We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04f5d6c + 5cd4eb0 commit 55e37e4Copy full SHA for 55e37e4
README.md
@@ -21,13 +21,15 @@ Add the following to your `.eslintrc` config:
21
22
```CJSON
23
{
24
- "parser": "typescript-eslint-parser",
25
"plugins": ["import"],
26
"rules": {
27
// turn on errors for missing imports
28
"import/no-unresolved": "error"
29
},
30
"settings": {
+ "import/parsers": {
31
+ "typescript-eslint-parser": [".ts", ".tsx"]
32
+ },
33
"import/resolver": {
34
// use <root>/tsconfig.json
35
"typescript": {},
@@ -41,6 +43,7 @@ Add the following to your `.eslintrc` config:
41
43
}
42
44
```
45
46
+
47
## Contributing
48
49
- Make sure your change is covered by a test import.
0 commit comments