Skip to content

Commit 2fd0faa

Browse files
committed
checkpoint
1 parent 9e14d75 commit 2fd0faa

13 files changed

+2307
-64
lines changed

.eslintrc

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
{
2-
"ecmaFeatures": {
3-
"modules": true
4-
},
5-
"env": {
6-
"browser": true,
7-
"node": true
8-
},
9-
"parser": "babel-eslint",
2+
"parser": "@typescript-eslint/parser",
3+
"plugins": ["@typescript-eslint"],
4+
"extends": ["plugin:@typescript-eslint/recommended"],
105
"rules": {
11-
"quotes": [2, "single"],
12-
"strict": [2, "never"],
13-
"babel/new-cap": 1,
14-
"babel/object-shorthand": 0,
15-
"babel/arrow-parens": 0
16-
},
17-
"plugins": [
18-
"babel"
19-
]
20-
}
6+
"@typescript-eslint/no-explicit-any": "off"
7+
}
8+
}

0 commit comments

Comments
 (0)