After upgrading my tslint to version 4.0.2, I encountered numerous errors like the ones shown below:
Could not find implementations for the following rules specified in the configuration:
directive-selector-name
component-selector-name
directive-selector-type
component-selector-type
directive-selector-prefix
component-selector-prefix
label-undefined
no-constructor-vars
no-duplicate-key
no-unreachable
use-strict
I suspect that my tslint.json file may be outdated and needs to be updated, but I have been unable to find any guidance on how to do so or even confirm if my assumption is correct.
tslint.json
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules": {
// list of rules
}
}
packages.json
{
// package dependencies and devDependencies listed here
}