-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
80 lines (80 loc) · 2.2 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
78
79
80
module.exports = {
parser: '@babel/eslint-parser',
parserOptions: {
requireConfigFile: false,
babelOptions: {
presets: ['@babel/preset-react'],
},
ecmaFeatures: {
jsx: true,
},
},
extends: [
'airbnb',
'plugin:jsx-a11y/recommended',
'prettier',
'plugin:grommet/recommended',
],
plugins: ['react', 'jsx', 'jsx-a11y', 'react-hooks', 'prettier'],
env: {
browser: true,
jest: true,
},
globals: {
it: true,
expect: true,
describe: true,
jest: true,
document: true,
test: true,
window: true,
fetch: true,
WebSocket: true,
alert: true,
},
rules: {
semi: [2, 'always'],
indent: 'off',
'comma-dangle': ['error', 'always-multiline'],
'object-curly-spacing': ['error', 'always'],
'no-console': 0,
'no-useless-concat': 0,
'max-len': [2, { ignoreUrls: true, ignoreRegExpLiterals: true }],
'jsx-a11y/href-no-hash': 0,
'jsx-a11y/anchor-is-valid': 0,
'react/jsx-indent': 0,
'react/jsx-wrap-multilines': 0,
'react/jsx-filename-extension': 0,
'implicit-arrow-linebreak': 0,
'import/no-named-as-default': 0,
'import/newline-after-import': 1,
'react/no-unescaped-entities': 0,
'react/jsx-first-prop-new-line': [1, 'multiline'],
'import/prefer-default-export': 0,
'class-methods-use-this': 0,
'operator-linebreak': 0,
'react/require-default-props': 0,
'react/react-in-jsx-scope': 0,
'react/no-danger': 0,
'react/prefer-stateless-function': 0,
'react/no-array-index-key': 0,
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'no-return-assign': 0,
'react/destructuring-assignment': 0,
'react/forbid-prop-types': 0,
'react/jsx-one-expression-per-line': 0,
'react/static-property-placement': 0,
'react/jsx-props-no-spreading': 0,
'react/function-component-definition': 0,
'react/no-unstable-nested-components': 0,
'prefer-regex-literals': 0,
'import/no-extraneous-dependencies': 0,
'import/no-cycle': 0,
'global-require': 0,
'import/no-dynamic-require': 0,
quotes: [2, 'single', { avoidEscape: true }],
'arrow-body-style': 0,
'no-else-return': 0,
},
};