From 34636ae1386b6513e2f023e4c312b62526abe394 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Tue, 5 Feb 2019 16:09:17 +0100 Subject: [PATCH] Add vue-cli configuration Signed-off-by: Severin Kaderli --- README.md | 5 +++++ install.sh | 1 + system/.config/vue/.vuerc | 21 +++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 system/.config/vue/.vuerc diff --git a/README.md b/README.md index 5e6f1c7..56d2613 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,14 @@ This folder contains my [Streamlink](https://streamlink.github.io/) configuratio This folder contains my configuration for my terminal emulator [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` This file contains my QT4 configuration. + + ### `bin` 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 diff --git a/install.sh b/install.sh index 2f549c5..a70b167 100755 --- a/install.sh +++ b/install.sh @@ -48,6 +48,7 @@ LINKED_FILES_HOME=( ".config/streamlink" ".config/termite" ".config/Trolltech.conf" + ".config/vue" ".dircolors" ".env" ".gtkrc-2.0.mine" diff --git a/system/.config/vue/.vuerc b/system/.config/vue/.vuerc new file mode 100644 index 0000000..4949eea --- /dev/null +++ b/system/.config/vue/.vuerc @@ -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" + } + } +} \ No newline at end of file