mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* move tslint ADF rules in principal repo * fix style issues * change pacakge.json position * update to angular cli 6.0.0 * reorganization package.json * remove node modules2 folder * exclude integration * rollback alfresco-js-api * solve types problems * fix pdf test * fix errors and exclude two tests * fix e2e * fix test * copy all the new packages in node_modules * fix test * fix packaging script * scss issue fix * move test export in tools
44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
import * as Lint from 'tslint';
|
|
import * as ts from 'typescript';
|
|
import { sprintf } from 'sprintf-js';
|
|
import { NgWalker } from 'codelyzer/angular/ngWalker';
|
|
|
|
export class Rule extends Lint.Rules.AbstractRule {
|
|
public static metadata: Lint.IRuleMetadata = {
|
|
ruleName: 'adf-prefix-name',
|
|
type: 'maintainability',
|
|
description: `Name events without the prefix on`,
|
|
descriptionDetails: `See more at https://angular.io/guide/styleguide#dont-prefix-output-properties`,
|
|
rationale: `Angular allows for an alternative syntax on-*. If the event itself was prefixed with on this would result in an on-onEvent binding expression`,
|
|
options: null,
|
|
optionsDescription: `Not configurable.`,
|
|
typescriptOnly: true,
|
|
};
|
|
|
|
static FAILURE_STRING: string = 'In the class "%s", the output ' +
|
|
'property "%s" should not be prefixed with on';
|
|
|
|
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
|
|
return this.applyWithWalker(
|
|
new ADFOutputPrefixNameRule(sourceFile,
|
|
this.getOptions()));
|
|
}
|
|
}
|
|
|
|
class ADFOutputPrefixNameRule extends NgWalker {
|
|
visitNgOutput(property: ts.PropertyDeclaration, output: ts.Decorator, args: string[]) {
|
|
let className = (<any>property).parent.name.text;
|
|
let memberName = (<any>property.name).text;
|
|
|
|
if (memberName && memberName.startsWith('on')) {
|
|
let failureConfig: string[] = [className, memberName];
|
|
failureConfig.unshift(Rule.FAILURE_STRING);
|
|
this.addFailure(
|
|
this.createFailure(
|
|
property.getStart(),
|
|
property.getWidth(),
|
|
sprintf.apply(this, failureConfig)));
|
|
}
|
|
}
|
|
}
|