Skip to content

Commit e6c1382

Browse files
committed
Merge master into add-travis
2 parents 3321b98 + 989beae commit e6c1382

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
yarn-error.log
33
yarn.lock
4+
.idea
5+
.vscode

README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@ Add the following to your `.eslintrc` config:
2121

2222
```CJSON
2323
{
24+
"parser": "typescript-eslint-parser",
25+
"plugins": ["import"],
26+
"rules": {
27+
// turn on errors for missing imports
28+
"import/no-unresolved": "error"
29+
},
2430
"settings": {
25-
"parser": "typescript-eslint-parser",
26-
"plugins": [
27-
"import"
28-
],
29-
"rules": {
30-
// turn on errors for missing imports
31-
"import/no-unresolved": "error"
32-
},
3331
"import/resolver": {
3432
// use <root>/tsconfig.json
3533
"typescript": {},

0 commit comments

Comments
 (0)