You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
"use strict"; |
|
|
|
module.exports = { |
|
rules: { |
|
"vue/html-self-closing": 0, |
|
"vue/max-len": 0, |
|
|
|
"vue/array-bracket-newline": "off", |
|
"vue/array-bracket-spacing": "off", |
|
"vue/arrow-spacing": "off", |
|
"vue/block-spacing": "off", |
|
"vue/block-tag-newline": "off", |
|
"vue/brace-style": "off", |
|
"vue/comma-dangle": "off", |
|
"vue/comma-spacing": "off", |
|
"vue/comma-style": "off", |
|
"vue/dot-location": "off", |
|
"vue/func-call-spacing": "off", |
|
"vue/html-closing-bracket-newline": "off", |
|
"vue/html-closing-bracket-spacing": "off", |
|
"vue/html-end-tags": "off", |
|
"vue/html-indent": "off", |
|
"vue/html-quotes": "off", |
|
"vue/key-spacing": "off", |
|
"vue/keyword-spacing": "off", |
|
"vue/max-attributes-per-line": "off", |
|
"vue/multiline-html-element-content-newline": "off", |
|
"vue/mustache-interpolation-spacing": "off", |
|
"vue/no-extra-parens": "off", |
|
"vue/no-multi-spaces": "off", |
|
"vue/no-spaces-around-equal-signs-in-attribute": "off", |
|
"vue/object-curly-newline": "off", |
|
"vue/object-curly-spacing": "off", |
|
"vue/object-property-newline": "off", |
|
"vue/operator-linebreak": "off", |
|
"vue/script-indent": "off", |
|
"vue/singleline-html-element-content-newline": "off", |
|
"vue/space-in-parens": "off", |
|
"vue/space-infix-ops": "off", |
|
"vue/space-unary-ops": "off", |
|
"vue/template-curly-spacing": "off", |
|
}, |
|
};
|
|
|