A set of tslint rules for static code analysis of ng-alain projects.
How to use?
Install ng-alain-codelyzer:
# via npm npm i ng-alain-codelyzer --save-dev# via yarn yarn add -D ng-alain-codelyzer
Using ng-alain-codelyzer from node_modules directory:
Next you can create a component file in the src/app/routes
directory with name component.ts and the following content:
;
As last step you can execute all the rules against your code with tslint:
./node_modules/.bin/tslint -c tslint.json src/app/routes/component.ts
You should see the following output:
ERROR: src/app/routes/component.ts[1, 30]: Should be imported using `@core`
Subdirectories
If you want to support subdirectory import styles:
;
Configured as:
License
MIT