generated from nim-od/softeer-mono-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
55 lines (55 loc) · 1.36 KB
/
.eslintrc.cjs
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: [
'airbnb',
'airbnb/hooks',
'airbnb-typescript',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
overrides: [
{
env: { node: true },
files: ['.eslintrc.{js,cjs}'],
parserOptions: { sourceType: 'script' },
},
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'react'],
rules: {
'operator-linebreak': 'off',
'react/require-default-props': 'off',
'object-curly-newline': 'off',
'import/extensions': 'off',
'react/react-in-jsx-scope': 'off',
'arrow-parens': 'off',
'no-confusing-arrow': 'off',
'implicit-arrow-linebreak': 'off',
'function-paren-newline': 'off',
'consistent-return': 'off',
'no-use-before-define': 'off',
'import/no-extraneous-dependencies': 'off',
'no-restricted-imports': 'off',
'react/prop-types': 'off',
'react/jsx-props-no-spreading': 'off',
'@typescript-eslint/no-use-before-define': 'off',
indent: 'off',
'react/jsx-indent': 'off',
'react/jsx-indent-props': 'off',
'@typescript-eslint/indent': 'off',
'no-tabs': 'off',
'global-require': 'off',
'react/jsx-wrap-multilines': 'off',
'react/jsx-one-expression-per-line': 'off',
'react-hooks/exhaustive-deps': 'off',
},
};