-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
54 lines (54 loc) · 1.43 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended'
],
ignorePatterns: [
"packages/server/dist/",
"packages/client/build/",
"node_modules",
],
rules: {
'@typescript-eslint/member-delimiter-style': ['error', {
multiline: {
delimiter: 'none', // 'none' or 'semi' or 'comma'
requireLast: true,
},
singleline: {
delimiter: 'semi', // 'semi' or 'comma'
requireLast: false,
},
}],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/interface-name-prefix': ['warn',
{ 'prefixWithI': 'always' }
],
'@typescript-eslint/no-unused-vars': ['error', {
ignoreRestSiblings: true,
argsIgnorePattern: '^_',
}],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/class-name-casing': ['error', {
allowUnderscorePrefix: true
}],
'@typescript-eslint/member-delimiter-style': ['error', {
'multiline': {
"delimiter": "none"
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}],
'semi': 'off',
'@typescript-eslint/semi': ['error', 'never'],
'react/prop-types': 'off',
}
};