We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75cfb50 + 8c24040 commit 989beaeCopy full SHA for 989beae
.gitignore
@@ -1,3 +1,5 @@
1
node_modules
2
yarn-error.log
3
yarn.lock
4
+.idea
5
+.vscode
README.md
@@ -19,15 +19,13 @@ Add the following to your `.eslintrc` config:
19
20
```CJSON
21
{
22
+ "parser": "typescript-eslint-parser",
23
+ "plugins": ["import"],
24
+ "rules": {
25
+ // turn on errors for missing imports
26
+ "import/no-unresolved": "error"
27
+ },
28
"settings": {
- "parser": "typescript-eslint-parser",
- "plugins": [
- "import"
- ],
- "rules": {
- // turn on errors for missing imports
29
- "import/no-unresolved": "error"
30
- },
31
"import/resolver": {
32
// use <root>/tsconfig.json
33
"typescript": {},
0 commit comments