-
Notifications
You must be signed in to change notification settings - Fork 14
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
Be able to use rulesDirectory #35
Comments
I use it like this: {
"extends": [
"tslint-immutable"
]
} Could you post the relevant parts of your |
I have it like this: {
"extends": [
"./../../../node_modules/tslint-immutable"
],
"rules": {
"readonly-keyword": true,
"readonly-array": true,
"no-let": true
}
} But there is a new feature in tslint, {
"rulesDirectory": [
"tslint-consistent-codestyle"
],
"rules": {
"early-exit": [
true,
{
"max-length": 0
}
]
}
} Both files are in the same sub-folder, but |
According to the docs, both |
Looked closer at the docs and for |
@michaeljota I published 4.0.2 which has an index.js file in the rules directory. Could you check if it works with |
It works. Thanks you. |
Right now I tested with lastes
tslint
and this, but though there is not errors telling it does not find the rules directory, there is not definitions for the rules either.The text was updated successfully, but these errors were encountered: