25 lines
622 B
JavaScript
25 lines
622 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/recommended',
|
|
'eslint:recommended'
|
|
],
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
},
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-debugger': 'off',
|
|
'vue/html-closing-bracket-newline': 'off',
|
|
'vue/html-indent': 'off',
|
|
'vue/html-self-closing': 'off',
|
|
'vue/max-attributes-per-line': 'off',
|
|
'vue/multiline-html-element-content-newline': 'off',
|
|
'vue/no-v-html': 'off',
|
|
'vue/singleline-html-element-content-newline': 'off'
|
|
}
|
|
};
|