-
-
Notifications
You must be signed in to change notification settings - Fork 345
/
.eslintrc.js
77 lines (74 loc) · 2.06 KB
/
.eslintrc.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//@ts-check
const configExtends = [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:import/errors',
'plugin:import/warnings',
]
const configExtendsPrettier = ['prettier']
/** @type { import("@types/eslint").Linter.Config } */
module.exports = {
env: {
browser: true,
es6: true,
node: true,
jest: true,
},
extends: [...configExtends, ...configExtendsPrettier],
parserOptions: {
ecmaFeatures: {
legacyDecorators: true,
},
},
plugins: ['import', 'react', 'prettier', 'react-hooks'],
parser: '@babel/eslint-parser',
rules: {
'linebreak-style': ['error', 'unix'],
'no-console': ['warn', { allow: ['warn', 'error', 'info'] }],
'no-var': 'error',
'no-unused-vars': ['warn', { args: 'none', ignoreRestSiblings: true }],
'unicode-bom': 'error',
'prefer-const': ['error', { destructuring: 'all' }],
'react/prop-types': 'off',
'no-irregular-whitespace': ['error', { skipStrings: true, skipTemplates: true }],
'import/no-named-as-default-member': 'off',
'react-hooks/rules-of-hooks': 'error',
'prettier/prettier': 'warn',
},
settings: {
'import/resolver': {
node: {
extensions: ['', '.js', '.jsx', '.es', '.ts', '.tsx'],
paths: [__dirname],
},
},
'import/core-modules': ['electron', 'redux-observers'],
'import/ignore': ['react-i18next'],
react: {
version: require('react').version,
},
},
overrides: [
{
files: ['*.ts', '*.tsx'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import', 'react', 'prettier', 'react-hooks'],
extends: [
...configExtends,
'plugin:import/typescript',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
...configExtendsPrettier,
],
settings: {
'import/resolver': {
node: {
extensions: ['', '.js', '.jsx', '.es', '.ts', '.tsx'],
paths: [__dirname],
},
},
},
},
],
}