-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreset.json
69 lines (69 loc) · 1.75 KB
/
preset.json
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
{
"bare": true,
"useConfigFiles": true,
"cssPreprocessor": "dart-sass",
"plugins": {
"@vue/cli-plugin-babel": {},
"@vue/cli-plugin-eslint": {},
"@vue/cli-plugin-router": {
"historyMode": true
},
"@vue/cli-plugin-vuex": {},
"vue-cli-plugin-vuetify": {
"preset": "configure",
"replaceComponents": false,
"useTheme": false,
"useCustomProperties": false,
"iconFont": "mdi",
"installFonts": false,
"useAlaCarte": true,
"usePolyfill": true,
"locale": "en"
},
"@vuetify/vue-cli-plugin-presets": {
"prompts": true,
"version": "^0.1.0-alpha.12"
}
},
"configs": {
"eslintConfig": {
"extends": [
"plugin:vue/recommended",
"eslint:recommended"
],
"rules": {
"comma-dangle": ["error", "always-multiline"],
"max-len": "off",
"indent": "off",
"template-curly-spacing": "off",
"vue/component-name-in-template-casing": ["error", "kebab-case"],
"vue/script-indent": ["error", 2, {
"baseIndent": 1,
"switchCase": 1,
"ignores": []
}],
"vue/max-attributes-per-line": ["error", {
"singleline": 1,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"vue/html-closing-bracket-newline": ["error", {
"singleline": "never",
"multiline": "always"
}],
"vue/html-closing-bracket-spacing": "error",
"vue/no-unused-components": "warn",
"vue/no-unused-vars": "warn",
"vue/no-v-html": "off",
"vue/require-default-prop": "off"
}
},
"vue": {
"devServer": {
"disableHostCheck": true
}
}
}
}