vue.js 993 B

1234567891011121314151617181920212223242526272829303132
  1. "use strict";
  2. module.exports = {
  3. rules: {
  4. "vue/html-self-closing": 0,
  5. "vue/max-len": 0,
  6. "vue/array-bracket-spacing": "off",
  7. "vue/arrow-spacing": "off",
  8. "vue/block-spacing": "off",
  9. "vue/brace-style": "off",
  10. "vue/comma-dangle": "off",
  11. "vue/dot-location": "off",
  12. "vue/html-closing-bracket-newline": "off",
  13. "vue/html-closing-bracket-spacing": "off",
  14. "vue/html-end-tags": "off",
  15. "vue/html-indent": "off",
  16. "vue/html-quotes": "off",
  17. "vue/key-spacing": "off",
  18. "vue/keyword-spacing": "off",
  19. "vue/max-attributes-per-line": "off",
  20. "vue/multiline-html-element-content-newline": "off",
  21. "vue/mustache-interpolation-spacing": "off",
  22. "vue/no-multi-spaces": "off",
  23. "vue/no-spaces-around-equal-signs-in-attribute": "off",
  24. "vue/object-curly-spacing": "off",
  25. "vue/script-indent": "off",
  26. "vue/singleline-html-element-content-newline": "off",
  27. "vue/space-infix-ops": "off",
  28. "vue/space-unary-ops": "off",
  29. },
  30. };