-
Notifications
You must be signed in to change notification settings - Fork 30
/
.eslintrc.js
38 lines (38 loc) · 1.11 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
module.exports = {
parser: '@typescript-eslint/parser',
env: {
browser: true,
node: true,
es6: true,
},
plugins: ['react', 'react-hooks', '@typescript-eslint'],
settings: {
react: {
version: '16.8',
},
},
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/indent': ['error', 2],
'max-len': ['error', { code: 120 }],
quotes: [2, 'single', 'avoid-escape'],
semi: [2, 'never'],
'react/prop-types': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'@typescript-eslint/prefer-interface': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'no-empty-function': 'off',
'prefer-const': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/explicit-function-return-type': [
'error',
{
allowExpressions: true,
allowHigherOrderFunctions: true,
allowTypedFunctionExpressions: true,
},
],
},
};