Skip to content

Commit d799f88

Browse files
fix: simplify eslint config
Signed-off-by: Mauricio Robayo <[email protected]>
1 parent 6b42b55 commit d799f88

File tree

4 files changed

+12088
-2902
lines changed

4 files changed

+12088
-2902
lines changed

.eslintrc.json

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
{
2-
"root": true,
3-
"parser": "@typescript-eslint/parser",
4-
"plugins": ["@typescript-eslint"],
5-
"parserOptions": {
6-
"project": "./tsconfig.eslint.json"
7-
},
8-
"extends": ["airbnb-typescript/base", "prettier"],
9-
"ignorePatterns": ["lib", "coverage"]
2+
"env": {
3+
"browser": true,
4+
"es2021": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/recommended"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"parserOptions": {
13+
"ecmaVersion": 12,
14+
"sourceType": "module"
15+
},
16+
"plugins": [
17+
"@typescript-eslint"
18+
],
19+
"rules": {
20+
}
1021
}

0 commit comments

Comments
 (0)