File tree 1 file changed +6
-1
lines changed
packages/eslint-plugin-tslint
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,12 @@ Configure in your eslint config file:
25
25
" plugins" : [
26
26
" @typescript-eslint/tslint"
27
27
],
28
+ " parserOptions" : {
29
+ " project" : " tsconfig.json" ,
30
+ },
28
31
" rules" : {
29
32
" @typescript-eslint/tslint/config" : [" warn" , {
30
- " lintFile" : ' ' , // path to tslint.json of your project
33
+ " lintFile" : " " , // path to tslint.json of your project
31
34
" rules" : {
32
35
// tslint rules (will be used if `lintFile` is not specified)
33
36
},
@@ -39,6 +42,8 @@ Configure in your eslint config file:
39
42
}
40
43
```
41
44
45
+ ** Note:** The ability to automatically fix problems with ` --fix ` is unavailable for tslint rules loaded with this plugin.
46
+
42
47
## Rules
43
48
44
49
Plugin contains only single rule ` @typescript-eslint/tslint/config ` .
You can’t perform that action at this time.
0 commit comments