-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
185 lines (170 loc) · 5.58 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
module.exports = {
// https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
// This option interrupts the configuration hierarchy at this file
// Remove this if you have an higher level ESLint config file (it usually happens into a monorepos)
root: true,
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
env: {
browser: true
},
// Rules order is important, please avoid shuffling them
extends: [
// Base ESLint recommended rules
// 'eslint:recommended',
// Uncomment any of the lines below to choose desired strictness,
// but leave only one uncommented!
// See https://eslint.vuejs.org/rules/#available-rules
'plugin:vue/essential', // Priority A: Essential (Error Prevention)
// 'plugin:vue/strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
// 'plugin:vue/recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
'standard',
'plugin:quasar/standard'
],
plugins: [
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file
// required to lint *.vue files
'vue',
'quasar'
],
globals: {
ga: true, // Google Analytics
cordova: true,
__statics: true,
process: true,
Capacitor: true,
chrome: true
},
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow paren-less arrow functions
'arrow-parens': 'off',
'one-var': 'off',
'import/first': 'off',
'import/named': 'error',
'import/namespace': 'error',
'import/default': 'error',
'import/export': 'error',
'import/extensions': 'off',
'import/no-unresolved': 'off',
'import/no-extraneous-dependencies': 'off',
'prefer-promise-reject-errors': 'off',
camelcase: 0,
'quasar/no-invalid-props': 'error',
'quasar/no-invalid-qfield-usage': 'error',
'comma-dangle': ['error', 'never'],
// 'camelcase': ['error', { 'properties': 'never', ignoreDestructuring: true }],
eqeqeq: ['error', 'smart'],
'vue/attribute-hyphenation': 'error',
'vue/html-closing-bracket-spacing': ['error', {
startTag: 'never',
endTag: 'never',
selfClosingTag: 'always'
}],
// 'vue/html-indent': ['error', 2, {
// 'attribute': 1,
// 'baseIndent': 1,
// 'closeBracket': 0,
// 'alignAttributesVertically': false,
// 'ignores': []
// }],
'vue/html-self-closing': ['error', {
html: {
void: 'always',
normal: 'always',
component: 'always'
},
svg: 'always',
math: 'always'
}],
'vue/component-name-in-template-casing': ['error', 'kebab-case', {
registeredComponentsOnly: true,
ignores: []
}],
'vue/html-quotes': ['error', 'double', { avoidEscape: false }],
'vue/mustache-interpolation-spacing': ['error', 'always'],
'vue/name-property-casing': 'error',
'vue/no-multi-spaces': 'error',
'vue/no-spaces-around-equal-signs-in-attribute': 'error',
'vue/v-bind-style': ['error', 'shorthand'],
'vue/v-on-style': ['error', 'shorthand'],
'vue/attributes-order': ['error', {
order: [
'DEFINITION',
'OTHER_ATTR',
'LIST_RENDERING',
'CONDITIONALS',
'RENDER_MODIFIERS',
'GLOBAL',
'UNIQUE',
'TWO_WAY_BINDING',
'OTHER_DIRECTIVES',
'EVENTS',
'CONTENT'
],
alphabetical: false
}],
'vue/order-in-components': ['error', {
order: [
'el',
'name',
'parent',
'functional',
['delimiters', 'comments'],
'extends',
'mixins',
'inheritAttrs',
'model',
['props', 'propsData'],
['components', 'directives', 'filters'],
'fetch',
'asyncData',
'data',
'LIFECYCLE_HOOKS',
'computed',
'watch',
'methods',
'head',
['template', 'render'],
'renderError'
]
}],
'vue/match-component-file-name': ['error', {
extensions: ['vue'],
shouldMatchCase: true
}],
'vue/v-slot-style': 'error',
'vue/eqeqeq': ['error', 'smart'],
'vue/object-curly-spacing': ['error', 'always'],
'vue/this-in-template': 'error',
'vue/array-bracket-spacing': 'error',
'vue/arrow-spacing': 'error',
'vue/key-spacing': 'error',
'vue/no-boolean-default': 'error',
'vue/no-deprecated-scope-attribute': 'error',
'vue/no-deprecated-slot-attribute': 'error',
'vue/no-deprecated-slot-scope-attribute': 'error',
'vue/no-empty-pattern': 'error',
'vue/padding-line-between-blocks': 'error',
'vue/require-name-property': 'error',
'vue/space-infix-ops': 'error',
'vue/space-unary-ops': 'error',
'vue/valid-v-slot': 'error',
// 'vue/component-definition-name-casing': ['error', 'kebab-case'], va in conflitto
// 'vue/camelcase': ['error', { properties: 'never', ignoreDestructuring: true }], vengono usate variabili non in camelCase
// 'vue/brace-style': ['error', '1tbs', { 'allowSingleLine': false }], funziona già?
// 'vue/no-template-shadow': 'error', importante ma non applicabile
// 'vue/static-class-names-order': 'error',
// 'vue/prop-name-casing': 'error',
// vue/require-default-prop non so
// vue/require-prop-types non so
// vue/v-on-function-call non so
// allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}