first app draft
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
parserOptions: {
|
||||
parser: 'babel-eslint'
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
node: true,
|
||||
mocha: true
|
||||
},
|
||||
"globals": {
|
||||
"expect": true
|
||||
},
|
||||
extends: [
|
||||
'plugin:vue/recommended',
|
||||
'plugin:vue-a11y/base',
|
||||
'standard'
|
||||
],
|
||||
plugins: [
|
||||
'vue',
|
||||
'vue-a11y'
|
||||
],
|
||||
rules: {
|
||||
'generator-star-spacing': 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
'vue/singleline-html-element-content-newline': 'off',
|
||||
'vue/multiline-html-element-content-newline': 'off',
|
||||
'vue/max-attributes-per-line': 'off',
|
||||
'vue/no-v-html': 'off',
|
||||
'vue/require-default-prop': 'off',
|
||||
'vue-a11y/label-has-for': 'off'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user