-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
33 lines (33 loc) · 937 Bytes
/
.eslintrc.yml
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
env:
browser: true
extends:
- 'plugin:react/recommended'
- airbnb
- 'plugin:jest/recommended'
parser: '@typescript-eslint/parser'
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 2020
sourceType: module
plugins:
- react
- '@typescript-eslint'
rules: {
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error', {variables: false}],
'linebreak-style': 'off',
'operator-linebreak': 'off',
'arrow-body-style': 'off',
'max-len': 'off',
'no-plusplus': 'off',
'import/prefer-default-export': 'off',
'react/jsx-filename-extension': 'off',
'react/no-array-index-key': 'off',
'import/no-unresolved': 'off',
'import/extensions': 'off',
'prefer-destructuring': 'off',
'no-param-reassign': 'off',
'react/prop-types': 'off',
'react/destructuring-assignment': 'off',
}