-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
157 lines (155 loc) · 4.61 KB
/
.eslintrc.cjs
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
ecmaVersion: "es2019",
},
plugins: [
"@typescript-eslint/eslint-plugin",
"unicorn",
"@darraghor/nestjs-typed",
"eslint-comments",
"sonarjs",
"promise",
"jest",
],
// settings: {
// ["import/parsers"]: {"@typescript-eslint/parser": [".ts", ".tsx"]},
// ["import/resolver"]: {
// node: {
// extensions: [".ts", ".tsx"],
// },
// },
// },
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:unicorn/recommended",
// "plugin:import/errors",
// "plugin:import/warnings",
"plugin:unicorn/recommended",
"plugin:eslint-comments/recommended",
"plugin:sonarjs/recommended",
"prettier",
"plugin:promise/recommended",
"plugin:jest/recommended",
"plugin:@darraghor/nestjs-typed/recommended",
],
// tsconfigRootDir: __dirname,
root: true,
env: {
es6: true,
node: true,
jest: true,
},
ignorePatterns: [".eslintrc.cjs"],
rules: {
// "jest/no-try-expect":"off",
// "jest/no-conditional-expect":"off",
// "sonarjs/no-duplicate-string":"off",
// "no-eval": "error",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"jest/expect-expect": [
"error",
{
assertFunctionNames: [
"expect",
"request.**.expect",
"AuthenticatedRequests.getRequestAuthenticated",
],
},
],
"eslint-comments/disable-enable-pair": [
"error",
{allowWholeFile: true},
],
"@darraghor/nestjs-typed/sort-module-metadata-arrays": ["error"],
"@darraghor/nestjs-typed/injectable-should-be-provided": [
"error",
{
src: ["src/**/*.ts"],
filterFromPaths: ["node_modules", ".test.", ".spec."],
},
],
"unicorn/prefer-node-protocol": "off",
"unicorn/filename-case": "off",
// "unicorn/filename-case": [
// "error",
// {
// ignore: [/^\.\+spec\.ts$/],
// cases: {
// camelCase: true,
// pascalCase: true,
// },
// },
// ],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "default",
format: ["camelCase"],
},
{
selector: "memberLike",
modifiers: ["private"],
format: ["camelCase"],
leadingUnderscore: "forbid",
},
{
selector: "variable",
format: ["PascalCase", "UPPER_CASE"],
types: ["boolean"],
prefix: ["is", "should", "has", "can", "did", "will"],
},
{
selector: "variableLike",
format: ["camelCase", "UPPER_CASE", "PascalCase"],
},
{
selector: "parameter",
format: ["camelCase"],
},
{
selector: "typeLike",
format: ["PascalCase"],
},
{
selector: "property",
modifiers: ["readonly"],
format: ["camelCase"],
},
{
selector: "import",
format: ["camelCase", "PascalCase"],
},
{
selector: "enumMember",
format: ["UPPER_CASE"],
},
],
"unicorn/prevent-abbreviations": [
"error",
{
checkFilenames: false,
replacements: {
e: {},
e2e: {
checkFilenames: false,
},
res: false,
cmd: {
command: true,
},
errCb: {
handleError: true,
},
},
},
],
},
};