-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
37 lines (37 loc) · 1.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
module.exports = {
extends: ['airbnb-typescript', 'prettier'],
env: { es6: true, browser: true },
plugins: ['jest'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
createDefaultProgram: true,
},
root: true,
rules: {
'@typescript-eslint/dot-notation': 0,
'@typescript-eslint/naming-convention': 0,
'@typescript-eslint/no-shadow': 0,
'@typescript-eslint/no-unused-vars': 0,
'arrow-body-style': 0,
'func-names': 0,
'import/no-extraneous-dependencies': 0,
'import/no-unresolved': 0,
'import/prefer-default-export': 0,
'no-console': 0,
'no-plusplus': 0,
'no-underscore-dangle': 0,
'no-param-reassign': 0,
'no-nested-ternary': 0,
'prefer-destructuring': 0,
'react/destructuring-assignment': 0,
'react/jsx-filename-extension': 0,
'react/jsx-props-no-spreading': 0,
'react/prop-types': 0,
'react/react-in-jsx-scope': 0,
'react/require-default-props': 0,
'react/no-unescaped-entities': 0,
'import/no-mutable-exports': 0,
},
overrides: [],
};