-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 967 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"root": true,
"env": {
"es2020": true,
"jest": true,
"browser": true,
"commonjs": true
},
"extends": [
"airbnb-typescript",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jest-dom/recommended",
"plugin:testing-library/react",
"plugin:react-hooks/recommended",
"prettier"
],
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "src/"]
}
}
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-console": "warn",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"import/no-unresolved": ["error", { "ignore": ["^react$"] }],
"import/prefer-default-export": "off",
"prefer-promise-reject-errors": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
}
}