forked from keindev/changelog-guru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
47 lines (47 loc) · 1.09 KB
/
.eslintrc
File metadata and controls
47 lines (47 loc) · 1.09 KB
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
{
"root": true,
"env": {
"node": true,
"commonjs": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint",
"plugin:jest/recommended"
],
"plugins": ["@typescript-eslint", "jest"],
"rules": {
"@typescript-eslint/member-ordering": "error",
"import/prefer-default-export": 0,
"max-len": [
"error",
{
"code": 120
}
],
"indent": ["error", 4, { "SwitchCase": 1 }],
"lines-between-class-members": 0,
"no-bitwise": 0,
"no-plusplus": 0,
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true
}
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".ts"]
}
}
}
}