-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
88 lines (85 loc) · 2.64 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
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
module.exports = {
root: true,
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".vue", ".json", ".ts", ".js"],
warnOnUnsupportedTypeScriptVersion: false,
project: "./tsconfig.json",
},
env: {
browser: true,
es2020: true,
node: true,
"vue/setup-compiler-macros": true,
},
extends: ["plugin:@typescript-eslint/recommended", "plugin:vue/vue3-strongly-recommended", "standard"],
plugins: ["@typescript-eslint", "vue"],
globals: {
ga: "readonly", // Google Analytics
cordova: "readonly",
__statics: "readonly",
__QUASAR_SSR__: "readonly",
__QUASAR_SSR_SERVER__: "readonly",
__QUASAR_SSR_CLIENT__: "readonly",
__QUASAR_SSR_PWA__: "readonly",
process: "readonly",
Capacitor: "readonly",
chrome: "readonly",
},
// add your custom rules here
rules: {
"vue/max-attributes-per-line": "off",
"no-multiple-empty-lines": "off",
"@typescript-eslint/no-floating-promises": ["error"],
"promise/param-names": "off",
"generator-star-spacing": "off",
"arrow-parens": "off",
"one-var": "off",
"no-void": "off",
"multiline-ternary": "off",
"import/first": "off",
"import/namespace": "error",
"import/default": "error",
"import/export": "error",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": "off",
"import/named": "off",
"prefer-promise-reject-errors": "off",
"no-unused-vars": "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"space-in-parens": ["error", "never"],
"no-return-assign": "off",
eqeqeq: "off",
"no-empty": "off",
"no-useless-return": "off",
"no-unreachable": "off",
"prefer-const": "off",
"space-before-function-paren": "off",
camelcase: "off",
"no-undef": "off",
quotes: ["error", "double"],
"spaced-comment": "off",
"key-spacing": [
"error",
{
afterColon: true,
},
],
// TYPESCRIPT
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/type-annotation-spacing": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-non-null-assertion": "off",
// VUE
"vue/multi-word-component-names": "off",
"comma-dangle": "off",
},
}