-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add template-no-any rule #755
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import { MethodCall, PropertyRead } from '@angular/compiler'; | ||
import { IRuleMetadata, RuleFailure } from 'tslint'; | ||
import { AbstractRule } from 'tslint/lib/rules'; | ||
import { dedent } from 'tslint/lib/utils'; | ||
import { SourceFile } from 'typescript'; | ||
import { NgWalker } from './angular/ngWalker'; | ||
import { RecursiveAngularExpressionVisitor } from './angular/templates/recursiveAngularExpressionVisitor'; | ||
|
||
const ANY_TYPE_CAST_FUNCTION_NAME = '$any'; | ||
|
||
export class Rule extends AbstractRule { | ||
static readonly metadata: IRuleMetadata = { | ||
description: `Disallows using '${ANY_TYPE_CAST_FUNCTION_NAME}' in templates.`, | ||
options: null, | ||
optionsDescription: 'Not configurable.', | ||
rationale: dedent` | ||
The use of '${ANY_TYPE_CAST_FUNCTION_NAME}' nullifies the compile-time | ||
benefits of the Angular's type system. | ||
`, | ||
ruleName: 'template-no-any', | ||
type: 'functionality', | ||
typescriptOnly: true | ||
}; | ||
|
||
static readonly FAILURE_STRING = `Avoid using '${ANY_TYPE_CAST_FUNCTION_NAME}' in templates`; | ||
|
||
apply(sourceFile: SourceFile): RuleFailure[] { | ||
return this.applyWithWalker( | ||
new NgWalker(sourceFile, this.getOptions(), { | ||
expressionVisitorCtrl: ExpressionVisitor | ||
}) | ||
); | ||
} | ||
} | ||
|
||
class ExpressionVisitor extends RecursiveAngularExpressionVisitor { | ||
visitMethodCall(ast: MethodCall, context: any): any { | ||
this.validateMethodCall(ast); | ||
super.visitMethodCall(ast, context); | ||
} | ||
|
||
private generateFailure(ast: MethodCall): void { | ||
const { | ||
span: { end: endSpan, start: startSpan } | ||
} = ast; | ||
|
||
this.addFailureFromStartToEnd(startSpan, endSpan, Rule.FAILURE_STRING); | ||
} | ||
|
||
private validateMethodCall(ast: MethodCall): void { | ||
const isAnyTypeCastFunction = ast.name === ANY_TYPE_CAST_FUNCTION_NAME; | ||
const isAngularAnyTypeCastFunction = !(ast.receiver instanceof PropertyRead); | ||
|
||
if (!isAnyTypeCastFunction || !isAngularAnyTypeCastFunction) return; | ||
|
||
this.generateFailure(ast); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
import { Rule } from '../src/templateNoAnyRule'; | ||
import { assertAnnotated, assertMultipleAnnotated, assertSuccess } from './testHelper'; | ||
|
||
const { | ||
FAILURE_STRING, | ||
metadata: { ruleName } | ||
} = Rule; | ||
|
||
describe(ruleName, () => { | ||
describe('failure', () => { | ||
it('should fail with call expression in expression binding', () => { | ||
const source = ` | ||
@Component({ | ||
template: '{{ $any(framework).name }}' | ||
~~~~~~~~~~~~~~~ | ||
}) | ||
export class Bar {} | ||
`; | ||
assertAnnotated({ | ||
message: FAILURE_STRING, | ||
ruleName, | ||
source | ||
}); | ||
}); | ||
|
||
it('should fail with call expression using "this"', () => { | ||
const source = ` | ||
@Component({ | ||
template: '{{ this.$any(framework).name }}' | ||
~~~~~~~~~~~~~~~~~~~~ | ||
}) | ||
class Bar {} | ||
`; | ||
assertAnnotated({ | ||
message: FAILURE_STRING, | ||
ruleName, | ||
source | ||
}); | ||
}); | ||
|
||
it('should fail with call expression in property binding', () => { | ||
const source = ` | ||
@Component({ | ||
template: '<a [href]="$any(getHref())">Click here</a>' | ||
~~~~~~~~~~~~~~~ | ||
}) | ||
class Bar {} | ||
`; | ||
assertAnnotated({ | ||
message: FAILURE_STRING, | ||
ruleName, | ||
source | ||
}); | ||
}); | ||
|
||
it('should fail with call expression in an output handler', () => { | ||
const source = ` | ||
@Component({ | ||
template: '<button type="button" (click)="$any(this).member = 2">Click here</button>' | ||
~~~~~~~~~~ | ||
}) | ||
class Bar {} | ||
`; | ||
assertAnnotated({ | ||
message: FAILURE_STRING, | ||
ruleName, | ||
source | ||
}); | ||
}); | ||
|
||
it('should fail for multiple cases', () => { | ||
const source = ` | ||
@Component({ | ||
template: \` | ||
{{ $any(framework).name }} | ||
~~~~~~~~~~~~~~~ | ||
{{ this.$any(framework).name }} | ||
^^^^^^^^^^^^^^^^^^^^ | ||
<a [href]="$any(getHref())">Click here</a>' | ||
############### | ||
<button type="button" (click)="$any(this).member = 2">Click here</button> | ||
%%%%%%%%%% | ||
\` | ||
}) | ||
class Bar {} | ||
`; | ||
assertMultipleAnnotated({ | ||
failures: [ | ||
{ | ||
char: '~', | ||
msg: FAILURE_STRING | ||
}, | ||
{ | ||
char: '^', | ||
msg: FAILURE_STRING | ||
}, | ||
{ | ||
char: '#', | ||
msg: FAILURE_STRING | ||
}, | ||
{ | ||
char: '%', | ||
msg: FAILURE_STRING | ||
} | ||
], | ||
ruleName, | ||
source | ||
}); | ||
}); | ||
}); | ||
|
||
describe('success', () => { | ||
it('should pass with no call expression', () => { | ||
const source = ` | ||
@Component({ | ||
template: '{{ $any }}' | ||
}) | ||
class Bar {} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
|
||
it('should pass for an object containing a function called "$any"', () => { | ||
const source = ` | ||
@Component({ | ||
template: '{{ obj.$any() }}' | ||
}) | ||
class Bar { | ||
readonly obj = { | ||
$any: () => '$any' | ||
}; | ||
} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
|
||
it('should pass for a nested object containing a function called "$any"', () => { | ||
const source = ` | ||
@Component({ | ||
template: '{{ obj?.x?.y!.z!.$any() }}' | ||
}) | ||
class Bar { | ||
readonly obj: Partial<Xyz> = { | ||
x: { | ||
y: { | ||
z: { | ||
$any: () => '$any' | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
|
||
it('should pass with call expression in property binding', () => { | ||
const source = ` | ||
@Component({ | ||
template: '<a [href]="$test()">Click here</a>' | ||
}) | ||
class Bar {} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
|
||
it('should pass with call expression in an output handler', () => { | ||
const source = ` | ||
@Component({ | ||
template: '<button type="button" (click)="anyClick()">Click here</button>' | ||
}) | ||
class Bar {} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
|
||
it('should pass for multiple cases', () => { | ||
const source = ` | ||
@Component({ | ||
template: \` | ||
{{ $any }} | ||
{{ obj?.x?.y!.z!.$any() }} | ||
<a [href]="$test()">Click here</a> | ||
<button type="button" (click)="anyClick()">Click here</button> | ||
\` | ||
}) | ||
class Bar { | ||
readonly obj: Partial<Xyz> = { | ||
x: { | ||
y: { | ||
z: { | ||
$any: () => '$any' | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
`; | ||
assertSuccess(ruleName, source); | ||
}); | ||
}); | ||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you also add the rule to the readme?