-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.eslintrc.js
30 lines (30 loc) · 894 Bytes
/
.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
module.exports = {
extends: '@osdoc-dev/eslint-config-preset-react',
env: {
node: true,
jest: true,
},
rules: {
'import/prefer-default-export': 0,
'import/extensions': 0,
'jsx-quotes': 0,
'unicorn/consistent-destructuring': 0,
'import/no-extraneous-dependencies': 0,
'@typescript-eslint/no-var-requires': 0,
'comma-dangle': 0,
'unicorn/filename-case': 0,
'@typescript-eslint/no-unused-vars': 0,
'unicorn/no-null': 0,
'@typescript-eslint/no-use-before-define': 0,
'unicorn/prevent-abbreviations': 0,
'class-methods-use-this': 0,
'brace-style': 0,
'unicorn/no-array-reduce': 0,
'operator-linebreak': 0,
'arrow-parens': 0,
'@typescript-eslint/no-redeclare': 0,
'no-underscore-dangle': 0,
'@typescript-eslint/no-namespace': 0,
'space-before-function-paren': 0,
},
}