-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc.js
More file actions
36 lines (36 loc) · 789 Bytes
/
Copy path.eslintrc.js
File metadata and controls
36 lines (36 loc) · 789 Bytes
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
module.exports = {
root: true,
extends: [
'standard',
'plugin:vue/vue3-recommended',
],
plugins: [],
rules: {
'object-property-newline': 0,
'no-extend-native': 0,
'lines-between-class-members': 0,
'no-return-assign': 0,
'promise/param-names': 0,
'vue/max-attributes-per-line': 0,
'vue/attributes-order': 0,
'vue/attribute-hyphenation': 0,
'vue/require-prop-types': 0,
'vue/custom-event-name-casing': 0,
'vue/singleline-html-element-content-newline': 0
},
globals: {
location: true,
alert: true,
localStorage: true,
FileReader: true,
Blob: true,
WebGLRenderingContext: true,
Phaser: true,
greenworks: true,
t: true,
sleep: true,
l: true,
ENV: true,
APP_VERSION: true
}
}