.eslintrc.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. module.exports = {
  2. root: true,
  3. parserOptions: {
  4. parser: '@babel/eslint-parser'
  5. },
  6. env: {
  7. browser: true,
  8. node: true,
  9. es6: true
  10. },
  11. extends: [
  12. 'plugin:vue/strongly-recommended',
  13. '@vue/standard'
  14. ],
  15. rules: {
  16. 'no-console': 'off',
  17. 'space-before-function-paren': 0,
  18. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  19. 'generator-star-spacing': 'off',
  20. 'no-mixed-operators': 0,
  21. 'vue/max-attributes-per-line': [
  22. 2,
  23. {
  24. 'singleline': 5,
  25. 'multiline': {
  26. 'max': 1,
  27. 'allowFirstLine': false
  28. }
  29. }
  30. ],
  31. 'vue/require-prop-types': false,
  32. 'vue/require-default-prop': false,
  33. 'vue/attribute-hyphenation': 0,
  34. 'vue/html-self-closing': 0,
  35. 'vue/component-name-in-template-casing': 0,
  36. 'vue/html-closing-bracket-spacing': 0,
  37. 'vue/singleline-html-element-content-newline': 0,
  38. 'vue/no-unused-components': 0,
  39. 'vue/multiline-html-element-content-newline': 0,
  40. 'vue/no-use-v-if-with-v-for': 0,
  41. 'vue/html-closing-bracket-newline': 0,
  42. 'vue/no-parsing-error': 0,
  43. 'no-tabs': 0,
  44. 'quotes': [
  45. 2,
  46. 'single',
  47. {
  48. 'avoidEscape': true,
  49. 'allowTemplateLiterals': true
  50. }
  51. ],
  52. 'no-delete-var': 2,
  53. 'prefer-const': [
  54. 2,
  55. {
  56. 'ignoreReadBeforeAssign': false
  57. }
  58. ],
  59. 'semi': 0,
  60. 'template-curly-spacing': 'off',
  61. 'camelcase': 'off',
  62. 'no-new': 'off',
  63. // 允许多行下,逗号结尾[arrays, objects, imports, imports, functions]
  64. 'comma-dangle': ['error', 'only-multiline'],
  65. },
  66. };