This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
71 lines (71 loc) · 1.94 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
plugins: [
'@typescript-eslint',
'import',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'no-prototype-builtins': 'off',
'comma-dangle': 'off',
'no-irregular-whitespace': 'error',
'no-multiple-empty-lines': ['error', { max: 1}],
'@typescript-eslint/comma-dangle': ['error', 'always-multiline'],
'@typescript-eslint/explicit-function-return-type': ['error'],
'@typescript-eslint/consistent-type-imports': ['error'],
'@typescript-eslint/member-delimiter-style': ['error', {
multiline: {
delimiter: 'comma',
requireLast: true,
},
singleline: {
delimiter: 'comma',
requireLast: false,
},
}],
'capitalized-comments': [
'error',
'always',
{
'ignorePattern': 'pragma|ignored',
'ignoreInlineComments': true,
},
],
semi: [
'error',
'always',
],
'indent': [
'error',
2,
],
'no-debugger': 'error',
'no-unreachable': 'error',
'consistent-return': 'error',
camelcase: 'error',
curly: 'error',
eqeqeq: 'error',
'multiline-comment-style': [
'error',
'starred-block',
],
'no-iterator': 'error',
'import/no-cycle': [
2,
{
maxDepth: 1,
},
],
quotes: ['error', 'single'],
'eol-last': ['error', 'always'],
},
};