Add vue-cli configuration

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2019-02-05 16:09:17 +01:00
parent ebd2f86027
commit 34636ae138
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
3 changed files with 27 additions and 0 deletions

View file

@ -62,9 +62,14 @@ This folder contains my [Streamlink](https://streamlink.github.io/) configuratio
This folder contains my configuration for my terminal emulator This folder contains my configuration for my terminal emulator
[Termite](https://github.com/thestinger/termite). [Termite](https://github.com/thestinger/termite).
### `.config/vue`
This file contains my configuration for [vue-cli](https://github.com/vuejs/vue-cli).
### `.config/Trolltech.conf` ### `.config/Trolltech.conf`
This file contains my QT4 configuration. This file contains my QT4 configuration.
### `bin` ### `bin`
This folder contains a bunch of scripts that I use. Some of them are used by This folder contains a bunch of scripts that I use. Some of them are used by
Polybar or i3 and others are used directly and some like `utils.sh` contain Polybar or i3 and others are used directly and some like `utils.sh` contain

View file

@ -48,6 +48,7 @@ LINKED_FILES_HOME=(
".config/streamlink" ".config/streamlink"
".config/termite" ".config/termite"
".config/Trolltech.conf" ".config/Trolltech.conf"
".config/vue"
".dircolors" ".dircolors"
".env" ".env"
".gtkrc-2.0.mine" ".gtkrc-2.0.mine"

21
system/.config/vue/.vuerc Normal file
View file

@ -0,0 +1,21 @@
{
"useTaobaoRegistry": false,
"presets": {
"My Preset": {
"useConfigFiles": false,
"plugins": {
"@vue/cli-plugin-babel": {},
"@vue/cli-plugin-pwa": {},
"@vue/cli-plugin-eslint": {
"config": "prettier",
"lintOn": [
"save"
]
}
},
"router": true,
"routerHistoryMode": true,
"cssPreprocessor": "sass"
}
}
}