forked from TryQuiet/quiet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
86 lines (86 loc) · 2.56 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
module.exports = {
env: {
"jest/globals": true
},
root: true,
extends: ['standard-with-typescript'],
parserOptions: {
project: './tsconfig.json'
},
parser: '@typescript-eslint/parser',
plugins: ['react-hooks', 'jest'],
rules: {
'node/no-path-concat': 'off',
'multiline-ternary': 'off',
'no-eval': 'off',
'no-void': 'off',
'no-unused-vars': 'off',
'no-irregular-whitespace': 'off',
'array-callback-return': 'off',
'comma-dangle': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars-experimental': 'off',
'@typescript-eslint/no-misused-promises': 'off',
"@typescript-eslint/prefer-ts-expect-error": "off",
'@typescript-eslint/no-extraneous-class': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/prefer-reduce-type-parameter': 'off',
'@typescript-eslint/prefer-readonly': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'@typescript-eslint/space-before-function-paren': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-dynamic-delete': 'off',
'@typescript-eslint/default-param-last': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-redeclare': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/dot-notation': 'off',
'generator-star-spacing': ['error', { before: false, after: true }],
'yield-star-spacing': ['error', { before: false, after: true }],
'react-hooks/exhaustive-deps': 'off',
'react-hooks/rules-of-hooks': 'error',
'no-case-declarations': 'off',
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: false
},
singleline: {
delimiter: 'semi',
requireLast: false
}
}
]
},
overrides: [
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-unused-vars-experimental': 'off',
'no-redeclare': 'off'
}
},
{
files: ['*.test.tsx'],
rules: {
'no-irregular-whitespace': 'off'
}
},
{
"files": [
'*.test.js',
'*.test.ts'
],
"env": {
"jest": true
}
}
]
}