forked from patternfly/patternfly-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
103 lines (103 loc) · 2.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
module.exports = {
root: true,
env: {
browser: true,
es6: true,
jasmine: true,
jest: true,
node: true
},
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:react/recommended',
'plugin:console/json',
'plugin:console/prettier'
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
comment: true,
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2017,
extraFileExtensions: ['.json'],
sourceType: 'module',
tsconfigRootDir: './',
debugLevel: true
},
plugins: ['react', 'react-hooks', '@typescript-eslint'],
rules: {
camelcase: [
'error',
{ allow: ['UNSAFE_componentWillReceiveProps', 'UNSAFE_componentWillMount'] },
],
'consistent-return': 0,
'consistent-this': [1, 'that'],
curly: [2, 'all'],
'default-case': [2],
'dot-notation': [2],
'no-multiple-empty-lines': [2, { max: 2, maxEOF: 0 }],
eqeqeq: [2, 'allow-null'],
'guard-for-in': 2,
'import/no-unresolved': ['error'],
'import/no-duplicates': ['error'],
'max-nested-callbacks': [1, 4],
'no-alert': 2,
'no-caller': 2,
'no-console': 2,
'no-constant-condition': 2,
'no-debugger': 2,
'no-else-return': ['error'],
'no-global-strict': 0,
'no-irregular-whitespace': ['error'],
'no-prototype-builtins': 0, // Disable with exlint v6 update.
'no-shadow': ['error'],
'no-underscore-dangle': 0,
'@typescript-eslint/no-unused-vars': [
'error',
{ varsIgnorePattern: 'React', args: 'after-used' },
],
'@typescript-eslint/no-use-before-define': 2,
'no-var': 2,
'object-shorthand': ['error', 'properties'],
'prefer-const': ['error', { destructuring: 'all' }],
'prefer-template': 2,
radix: 2,
'react/jsx-fragments': 'error',
'react/jsx-no-duplicate-props': 2,
'react/jsx-uses-react': 'error',
'react/jsx-uses-vars': 'error',
'react/no-string-refs': 1,
'react/no-unknown-property': 'error',
'react/prop-types': 0,
'react/self-closing-comp': ['error', { component: true, html: false }],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react/display-name': 0,
'react/no-unescaped-entities': 0,
'require-atomic-updates': 0,
'no-restricted-imports': [
'error',
{
name: 'lodash-es',
message: 'Use lodash instead. webpack is configured to use lodash-es automatically.',
},
],
},
settings: {
'import/extensions': ['.js', '.jsx'],
'import/resolver': {
node: { extensions: ['.js', '.jsx', '.ts', '.tsx'] },
'typescript': {},
},
react: {
version: 'detect',
},
},
globals: {
process: 'readonly',
},
};