Files
frost-navigation/.eslintrc.js

24 lines
590 B
JavaScript
Raw Normal View History

2021-05-22 18:13:49 +08:00
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/recommended',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
2021-06-05 11:04:03 +08:00
'no-console': 'off',
'no-debugger': 'off',
2021-05-22 18:13:49 +08:00
'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/singleline-html-element-content-newline': 'off'
}
};