-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
43 lines (43 loc) · 1.22 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
module.exports = {
root: true,
env: {
node: true,
},
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["@typescript-eslint", "import"],
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
rules: {
"import/order": [
"error",
{
groups: ["builtin", "external", "parent", ["sibling", "index"]],
},
],
"import/newline-after-import": ["error", { count: 1 }],
"no-multiple-empty-lines": ["error", { max: 1 }],
"padded-blocks": ["error", "never"],
"lines-between-class-members": ["error", "always"],
"padding-line-between-statements": [
"error",
{ blankLine: "always", prev: "*", next: "return" },
],
"newline-per-chained-call": ["error", { ignoreChainWithDepth: 2 }],
"arrow-body-style": ["error", "as-needed"],
"prefer-arrow-callback": "error",
semi: ["error", "always"],
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
varsIgnorePattern: "^_",
argsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
};