forked from redhat-developer/vscode-knative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
93 lines (93 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"root": true,
"env": {
"browser": true,
"es6": true,
"jasmine": true,
"node": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"comment": true,
"project": "./tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"camelcase": 2,
"consistent-return": 0,
"consistent-this": [1, "that"],
"curly": [2, "all"],
"default-case": [2],
"dot-notation": [2],
"no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 0 }],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
"mjs": "never"
}
],
"import/no-default-export": "off",
"import/no-duplicates": ["error"],
"import/no-unresolved": ["error"],
"import/prefer-default-export": "off",
"max-nested-callbacks": [1, 4],
"no-alert": 2,
"no-caller": 2,
"no-console": 2,
"no-constant-condition": 2,
"no-debugger": 2,
"no-else-return": ["error"],
"no-global-strict": 0,
"no-irregular-whitespace": ["error"],
"no-shadow": ["error"],
"no-underscore-dangle": 0,
"@typescript-eslint/no-use-before-define": 2,
"@typescript-eslint/await-thenable": "error",
"no-var": 2,
"object-shorthand": ["error", "properties"],
"prefer-const": ["error", { "destructuring": "all" }],
"prefer-template": 2,
"prettier/prettier": "error",
"radix": 2
},
"settings": {
"import/core-modules": ["vscode"],
"import/extensions": [
".ts",
".tsx"
],
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"extensions": [".ts"]
},
"": {},
"node": {
"extensions": [".ts", ".js", ".jsx"]
}
}
}
}