This repository has been archived by the owner on Apr 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
preset.json
83 lines (83 loc) · 1.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"useConfigFiles": true,
"plugins": {
"@vue/cli-plugin-babel": {},
"@vue/cli-plugin-eslint": {
"config": "airbnb",
"lintOn": []
},
"vue-cli-plugin-store": {
"version": "0.x.x",
"type": "init",
"persist": true
},
"vue-cli-plugin-route": {
"version": "0.x.x",
"type": "init",
"history": true
},
"vue-cli-plugin-auth": {
"version": "^0.1.0",
"type": "auth0",
"subdomain": "subdomain",
"clientID": "secret"
},
"vue-cli-plugin-s3-deploy": {
"version": "^3.0.0",
"awsProfile": "default",
"region": "us-east-1",
"bucket": "bucket",
"assetPath": "dist",
"assetMatch": "**",
"deployPath": "/",
"enableCloudfront": true,
"cloudfrontId": "cloudfrontId",
"cloudfrontMatchers": "/index.html"
},
"vue-cli-plugin-storybook": {
"version": "^0.5.1",
"type": "init"
}
},
"configs": {
"vue": {
"devServer": {
"port": 8000,
"open": true
}
},
"eslintConfig": {
"rules": {
"consistent-return": "off",
"max-len": "off",
"no-param-reassign": [
"error",
{
"props": true,
"ignorePropertyModificationsFor": [
"state",
"acc",
"e"
]
}
],
"unicorn/filename-case": "off"
},
"extends": [
"plugin:unicorn/recommended"
]
},
"postcss": {
"plugins": {
"postcss-import": {},
"postcss-url": {}
}
},
"devDependencies": {
"eslint-plugin-unicorn": "^7.0.0",
"postcss-import": "^12.0.0",
"postcss-url": "^8.0.0"
}
},
"cssPreprocessor": "less"
}