Skip to content

Commit 43b3c00

Browse files
robertcoopercodebradzacher
authored andcommitted
docs(eslint-plugin-tslint): update docs (typescript-eslint#241)
1 parent 26c827c commit 43b3c00

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: packages/eslint-plugin-tslint/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ Configure in your eslint config file:
2525
"plugins": [
2626
"@typescript-eslint/tslint"
2727
],
28+
"parserOptions": {
29+
"project": "tsconfig.json",
30+
},
2831
"rules": {
2932
"@typescript-eslint/tslint/config": ["warn", {
30-
"lintFile": '', // path to tslint.json of your project
33+
"lintFile": "", // path to tslint.json of your project
3134
"rules": {
3235
// tslint rules (will be used if `lintFile` is not specified)
3336
},
@@ -39,6 +42,8 @@ Configure in your eslint config file:
3942
}
4043
```
4144

45+
**Note:** The ability to automatically fix problems with `--fix` is unavailable for tslint rules loaded with this plugin.
46+
4247
## Rules
4348

4449
Plugin contains only single rule `@typescript-eslint/tslint/config`.

0 commit comments

Comments
 (0)