We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3321b98 + 989beae commit e6c1382Copy full SHA for e6c1382
.gitignore
@@ -1,3 +1,5 @@
1
node_modules
2
yarn-error.log
3
yarn.lock
4
+.idea
5
+.vscode
README.md
@@ -21,15 +21,13 @@ 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": {
- "parser": "typescript-eslint-parser",
- "plugins": [
- "import"
- ],
- "rules": {
- // turn on errors for missing imports
31
- "import/no-unresolved": "error"
32
- },
33
"import/resolver": {
34
// use <root>/tsconfig.json
35
"typescript": {},
0 commit comments