Closed
Description
- OS?
Mac OSX El Capitan - Versions.
angular-cli: 1.0.0-beta.6
node: 6.2.0
os: darwin x64 - Repro steps.
In a new project, runtslint "src/**/*.ts"
- The log given by the failure. Normally this include a stack trace and some
more information.
throw new Error(ERROR_MESSAGE);
^
Error:
Could not find implementations for the following rules specified in the configuration:
directive-selector-name
component-selector-name
directive-selector-type
component-selector-type
use-input-property-decorator
use-output-property-decorator
use-host-property-decorator
no-input-rename
no-output-rename
use-life-cycle-interface
use-pipe-transform-interface
component-class-suffix
directive-class-suffix
- Mention any other details that might be useful.
Looks like the rules directory was removed in chore(lint): update tslint #740
Maybe that's not necessary anymore, but I'm using the last tslint release 3.11, so something must be missing.
Current workaround is to add the rules directory again:
"rulesDirectory": [
"node_modules/codelyzer"
],
cc @filipesilva