-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
96 lines (96 loc) · 3.19 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: "module"
},
plugins: ['@typescript-eslint', 'react', 'import', 'functional', 'sonarjs'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:sonarjs/recommended',
'prettier',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
"ignorePatterns": ["**/__integration_tests__/*"],
rules: {
'no-case-declarations': 'off',
'no-inner-declarations': 'off',
'prefer-const': 'error',
curly: 'error',
'spaced-comment': ['error', 'always', { block: { balanced: true } }],
radix: 'error',
'one-var': ['error', 'never'],
'object-shorthand': 'error',
'no-var': 'error',
'no-param-reassign': 'error',
'no-underscore-dangle': 'error',
'no-undef-init': 'error',
'no-throw-literal': 'error',
'no-new-wrappers': 'error',
'no-eval': 'error',
'no-console': 'error',
'no-caller': 'error',
'no-bitwise': 'error',
eqeqeq: ['error', 'smart'],
'max-classes-per-file': ['error', 1],
'guard-for-in': 'error',
complexity: 'error',
'arrow-body-style': 'error',
'import/order': 'error',
'@typescript-eslint/no-unused-vars': 'off',
// Enable if we want to enforce the return type for all the functions
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
// TODO: added for compatibility. Removing this line we have to remove all the any usage in the code
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/array-type': [
'error',
{
default: 'generic',
},
],
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/dot-notation': 'error',
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'semi',
requireLast: true,
},
singleline: {
delimiter: 'semi',
requireLast: false,
},
},
],
'@typescript-eslint/no-floating-promises': 'error',
'no-unused-expressions': 'off',
'@typescript-eslint/no-unused-expressions': ['error'],
'@typescript-eslint/prefer-function-type': 'error',
'@typescript-eslint/restrict-plus-operands': 'error',
semi: 'off',
'@typescript-eslint/semi': ['error'],
'@typescript-eslint/unified-signatures': 'error',
'react/prop-types': 'off',
'react/display-name': 'off',
'react/jsx-key': 'error',
'react/jsx-no-bind': ['error', { allowArrowFunctions: true }],
'functional/no-let': 'error',
'functional/immutable-data': 'error',
'sonarjs/no-small-switch': 'off',
'sonarjs/no-duplicate-string': 'off',
},
settings: {
react: {
version: 'detect',
},
},
};