Skip to content

Commit cab0296

Browse files
committed
Replace tslint with eslint
1 parent bc99b8f commit cab0296

File tree

4 files changed

+2482
-454
lines changed

4 files changed

+2482
-454
lines changed

.eslintrc.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 2018,
6+
"sourceType": "module",
7+
"ecmaFeatures": {
8+
"jsx": true
9+
}
10+
},
11+
"plugins": ["@typescript-eslint"],
12+
"rules": {
13+
"@typescript-eslint/ban-types": "off",
14+
"@typescript-eslint/explicit-module-boundary-types": "off",
15+
"@typescript-eslint/no-explicit-any": "off",
16+
"@typescript-eslint/no-non-null-assertion": "off",
17+
"@typescript-eslint/no-unused-vars": "off",
18+
"no-prototype-builtins": "off",
19+
"no-useless-escape": "off",
20+
"prefer-spread": "off"
21+
}
22+
}

0 commit comments

Comments
 (0)