forked from zkopru-network/zkopru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
98 lines (96 loc) · 2.51 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
const path = require('path')
const common = {
env: {
node: true,
es2020: true,
'jest/globals': true,
},
parserOptions: {
ecmaVersion: 2020,
},
plugins: ['prettier', 'jest', 'markdown'],
extends: ['airbnb-base', 'prettier', 'plugin:jest/all'],
rules: {
'prettier/prettier': 'error',
'jest/no-disabled-tests': 'warn',
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'jest/prefer-to-have-length': 'warn',
'jest/valid-expect': 'error',
'jest/expect-expect': 'off',
'jest/prefer-expect-assertions': 'off',
'jest/no-test-return-statement': 'off',
'import/prefer-default-export': 'off',
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['**/*.test.ts', '**/*.spec.ts'] },
],
'import/extensions': 'off',
'no-console': 'off',
'no-iterator': 'off',
'no-restricted-syntax': 'off',
'no-await-in-loop': 'off',
'consistent-return': 'off',
'no-shadow': 'off',
'no-bitwise': 'off',
'no-unused-vars': 'off',
},
}
module.exports = {
root: true,
overrides: [
{
/*
eslint-plugin-markdown only finds javascript code block snippet.
For specific spec, refer to https://github.com/eslint/eslint-plugin-markdown
*/
files: ['**/*.js', '**/*.md'],
...common,
},
{
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
env: common.env,
plugins: [...common.plugins, '@typescript-eslint'],
extends: [
...common.extends,
'prettier/@typescript-eslint',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
rules: {
...common.rules,
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none', // 'none' or 'semi' or 'comma'
requireLast: true,
},
singleline: {
delimiter: 'semi', // 'semi' or 'comma'
requireLast: false,
},
},
],
},
overrides: [
{
files: '**/*.ts',
rules: {
'no-useless-constructor': 'off',
'@typescript-eslint/no-useless-constructor': 'error',
},
},
],
settings: {
'import/resolver': {
typescript: {},
},
},
},
],
}