-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
65 lines (65 loc) · 1.68 KB
/
.eslintrc
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
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint/eslint-plugin"],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"root": true,
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"env": {
"node": true,
"jest": true
},
"ignorePatterns": [
"dist",
"jest.config.js",
"src/infra/database/migrations",
"src/server/config"
],
"rules": {
"max-depth": ["warn", 3],
"no-restricted-imports": "error",
"linebreak-style": ["error", "unix"],
"max-lines": ["error", 600],
"max-len": ["error", 130, 2, {
"ignorePattern": "^(import|export)",
"ignoreUrls": true
}],
"constructor-super": "warn",
"no-return-await": "error",
"no-multiple-empty-lines": ["error", {
"max": 2
}],
"no-trailing-spaces": "error",
"no-extra-semi": "error",
"no-var": "error",
"quotes": ["error", "single"],
"quote-props": ["error", "as-needed"],
"camelcase": ["error", {
"properties": "always"
}],
"@typescript-eslint/no-unused-vars": ["error", {
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}],
"@typescript-eslint/explicit-module-boundary-types": "error",
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/explicit-member-accessibility": ["error", {
"accessibility": "explicit",
"overrides": {
"accessors": "explicit",
"constructors": "no-public",
"methods": "explicit",
"properties": "explicit",
"parameterProperties": "explicit"
}
}]
}
}