-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
41 lines (40 loc) · 1.16 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
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
},
extends: ['plugin:react/recommended', 'plugin:storybook/recommended', "eslint:recommended"],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: [
'react',
'@typescript-eslint',
],
rules: {
'react/jsx-indent': [2, 4],
'react/jsx-indent-props': [2, 4],
indent: [2, 4],
'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.tsx'] }],
'import/no-unresolved': 'off',
'import/prefer-default-export': 'off',
'no-unused-vars': 'warn',
'react/require-default-props': 'off',
'react/react-in-jsx-scope': "off",
'react/jsx-props-no-spreading': 'warn',
'react/function-component-definition': 'off',
'no-shadow': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'no-underscore-dangle': 'off',
},
globals: {
__IS_DEV__: true,
},
};