-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
30 lines (29 loc) · 1.14 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
/* eslint-env node */
module.exports = {
env: {
es2021: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
// "prettier",
"plugin:prettier/recommended",
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
root: true,
rules: {
// "@typescript-eslint/indent": ["error", 2, { SwitchCase: 1, ignoreComments: true }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_|request|response|next", varsIgnorePattern: "^_" }],
// "@typescript-eslint/semi": ["error", "always", { "omitLastInOneLineBlock": true }],
// "comma-dangle": ["error", "always-multiline"],
"eqeqeq": ["error", "always"],
// "indent": "off", // conflicts with TS' indent rule
"no-unused-vars": ["warn", { argsIgnorePattern: "^_|request|response|next", varsIgnorePattern: "^_" }],
// "no-trailing-spaces": "error",
// "semi": "off", // conflicts with TS' semi rule; see https://github.com/typescript-eslint/typescript-eslint/issues/123
},
};