.eslintrc.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. module.exports = {
  2. root: true,
  3. parserOptions: {
  4. parser: 'babel-eslint',
  5. sourceType: 'module'
  6. },
  7. env: {
  8. browser: true,
  9. node: true,
  10. es6: true,
  11. },
  12. extends: [
  13. //'plugin:vue/recommended',
  14. 'plugin:vue/vue3-essential',
  15. '@vue/standard',
  16. './.eslintrc-common.js'],
  17. globals: {
  18. ht: true
  19. },
  20. // add your custom rules here
  21. //it is base on https://github.com/vuejs/eslint-config-vue
  22. rules: {
  23. "vue/max-attributes-per-line": [2, {
  24. "singleline": 10,
  25. "multiline": {
  26. "max": 1,
  27. "allowFirstLine": false
  28. }
  29. }],
  30. "no-undef": "off",
  31. "vue/singleline-html-element-content-newline": "off",
  32. "vue/multiline-html-element-content-newline":"off",
  33. "vue/name-property-casing": ["error", "PascalCase"],
  34. "vue/no-v-html": "off",
  35. 'accessor-pairs': 2,
  36. 'arrow-spacing': [2, {
  37. 'before': true,
  38. 'after': true
  39. }],
  40. 'block-spacing': [2, 'always'],
  41. 'brace-style': [2, '1tbs', {
  42. 'allowSingleLine': true
  43. }]
  44. }
  45. }