2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-19 09:50:33 +03:00

build: add prettier and eslint (#1090)

This commit is contained in:
Jeff Sagal
2021-07-30 11:01:59 -07:00
committed by GitHub
parent f702040f5b
commit 96819ebb91
7 changed files with 500 additions and 53 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
parser: 'vue-eslint-parser',
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
plugins: ['prettier'],
extends: [
'plugin:prettier/recommended',
'plugin:vue/recommended',
'prettier/vue'
],
ignorePatterns: ['node_modules/', 'dist/', 'coverage/']
}