forked from particle-iot/spark-server
-
Notifications
You must be signed in to change notification settings - Fork 27
/
.eslintrc
69 lines (69 loc) · 1.67 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
66
67
68
69
{
"root": true,
"parserOptions": {
"project": "./tsconfig.json",
},
"plugins": ["@typescript-eslint", "import", "prettier"],
"extends": [
"airbnb-typescript/base",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
"parser": "@typescript-eslint/parser",
"rules": {
"eol-last": 2,
"import/first": 0,
"import/newline-after-import": 0,
"import/no-duplicates": 0,
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": 2,
"import/prefer-default-export": 0,
"newline-per-chained-call": 0,
"no-confusing-arrow": 0,
"no-console": 0,
"no-duplicate-imports": 0,
"no-mixed-operators": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"class-methods-use-this": "off",
"no-promise-executor-return": "off",
"quotes": [
2,
"single",
{
"avoidEscape": true,
},
],
"semi": 2,
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_",
},
],
"@typescript-eslint/naming-convention": [
"error",
{
"selector": ["parameter", "variable"],
"leadingUnderscore": "forbid",
"filter": {
// keep this one open for destructuring
"regex": "_*",
"match": false,
},
"format": null,
},
{
"selector": "parameter",
"leadingUnderscore": "require",
"format": null,
"modifiers": ["unused"],
},
],
},
}