-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
104 lines (101 loc) · 2.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module.exports = {
root: true,
parserOptions: {
parser: "@typescript-eslint/parser",
extraFileExtensions: [".vue"],
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: {
"no-use-before-define": "off",
"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": [
"error",
"never"
],
camelcase: "off",
"no-undef": "off",
quotes: [
"error",
"double"
],
"spaced-comment": "off",
"key-spacing": [
"error",
{
afterColon: true
}
],
// TYPESCRIPT
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-function": "warn",
"@typescript-eslint/type-annotation-spacing": ["error", {
after: false
}],
"@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",
// VUE
"vue/multi-word-component-names": "off"
}
}