-
Notifications
You must be signed in to change notification settings - Fork 55
/
.eslintrc
42 lines (42 loc) · 925 Bytes
/
.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
{
"root": true,
"globals": {
"GIT_COMMIT": true,
"PENGUIN_PLATFORM": true,
"PENGUIN_BUILDFROM": true,
"NPM_PACKAGE_VERSION": true
},
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"vuetify/no-deprecated-classes": "error",
"vuetify/grid-unknown-attributes": "error",
"vuetify/no-legacy-grid": "error",
"vue/no-v-html": "off",
"vue/no-template-shadow": "off",
"vue/valid-template-root": "off",
"vue/no-unused-vars": "off",
"no-debugger": "off",
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"vue/multi-word-component-names": "off",
"vue/no-side-effects-in-computed-properties": "warn",
"vue/valid-v-slot": "warn"
},
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"plugins": [
"vuetify"
]
}