-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
34 lines (34 loc) · 879 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
31
32
33
34
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ['plugin:react/recommended', 'airbnb', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['react', '@typescript-eslint'],
rules: {
'react/jsx-filename-extension': [1, { extensions: ['.tsx'] }],
'react/function-component-definition': [
2,
{
namedComponents: 'arrow-function',
},
],
'react/jsx-uses-react': 0,
'react/react-in-jsx-scope': 0,
'import/extensions': 0,
'import/no-unresolved': 0,
'react/style-prop-object': 0,
'import/prefer-default-export': 0,
'@typescript-eslint/unbound-method': 0,
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
},
};