Skip to content
This repository was archived by the owner on Feb 3, 2020. It is now read-only.

Commit 1bd69b2

Browse files
committed
chore: upgrade typescript
closes #2 closes #4
1 parent e5399c3 commit 1bd69b2

File tree

4 files changed

+148
-142
lines changed

4 files changed

+148
-142
lines changed

.eslintrc.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
extends: airbnb-base
2-
parser: typescript-eslint-parser
1+
extends:
2+
- airbnb-base
3+
- 'plugin:@typescript-eslint/recommended'
4+
parser: '@typescript-eslint/parser'
35
plugins:
4-
- typescript
6+
- '@typescript-eslint'
57
settings:
68
import/resolver:
79
node:
810
extensions:
911
- .ts
1012
import/parsers:
11-
typescript-eslint-parser: [.ts]
13+
'@typescript-eslint/parser': [.ts]
1214
rules:
1315
no-undef: off
1416
space-infix-ops: off
1517
import/extensions: [error, ignorePackages, {
1618
js: never,
1719
}]
18-
typescript/no-unused-vars: error
20+
import/named: off
21+
'@typescript-eslint/indent': off
22+
'@typescript-eslint/no-explicit-any': off
1923
overrides:
2024
- files: '**/*.test.ts'
2125
rules:

0 commit comments

Comments
 (0)