first commit from template

This commit is contained in:
2019-04-01 22:53:39 +02:00
commit 99f683066a
23 changed files with 12606 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
node: true,
mocha: true
},
"globals": {
"expect": true
},
extends: [
'plugin:vue/recommended',
'standard'
],
plugins: [
'vue'
],
rules: {
'generator-star-spacing': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}