-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
50 lines (50 loc) · 1.11 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
module.exports = {
root: true, // https://eslint.org/docs/user-guide/configuring/configuration-files#cascading-and-hierarchy
extends: [
'weseek',
'weseek/typescript',
'plugin:jest/recommended',
],
env: {
'jest/globals': true,
},
globals: {
},
plugins: [
'jest',
],
rules: {
'import/prefer-default-export': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-var-requires': 'off',
indent: [
'error',
2,
{
SwitchCase: 1,
ArrayExpression: 'first',
FunctionDeclaration: { body: 1, parameters: 2 },
FunctionExpression: { body: 1, parameters: 2 },
},
],
'jest/no-standalone-expect': [
'error',
{ additionalTestBlockFunctions: ['each.test'] },
],
'no-multi-str': 'off',
},
settings: {
/**
* Support paths defined in tsconfig.json
* see. https://www.npmjs.com/package/eslint-import-resolver-typescript
*/
'import/resolver': {
typescript: {
alwaysTryTypes: true,
config: [
'tsconfig.json',
],
},
},
},
};