.eslintrc.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // http://eslint.org/docs/user-guide/configuring
  2. module.exports = {
  3. root: true,
  4. parser: 'babel-eslint',
  5. parserOptions: {
  6. sourceType: 'module'
  7. },
  8. env: {
  9. browser: true,
  10. jquery: true
  11. },
  12. // https://github.com/standard/standard/blob/master/docs/RULES-en.md
  13. extends: 'standard',
  14. // required to lint *.vue files
  15. plugins: [
  16. 'html'
  17. ],
  18. // add your custom rules here
  19. 'rules': {
  20. // allow paren-less arrow functions
  21. 'arrow-parens': 0,
  22. // allow async-await
  23. 'generator-star-spacing': 0,
  24. // allow debugger during development
  25. 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  26. 'no-undef': 0,
  27. 'semi': 0,
  28. 'quotes': 0,
  29. 'space-before-function-paren': 0,
  30. 'no-extend-native': 0,
  31. 'camelcase': 0,
  32. 'indent':0,
  33. 'space-before-blocks':0,
  34. 'no-unused-vars':0,
  35. 'comma-spacing':0,
  36. 'no-unused-vars':0,
  37. 'space-before-blocks':0,
  38. 'padded-blocks':0,
  39. 'no-tabs':0,
  40. 'brace-style':0,
  41. 'comma-dangle ':0,
  42. 'key-spacing':0,
  43. 'comma-dangle':0,
  44. 'no-mixed-spaces-and-tabs':0,
  45. 'no-multi-spaces':0,
  46. 'no-trailing-spaces':0,
  47. 'eol-last':0,
  48. 'no-constant-condition':0,
  49. 'space-in-parens':0,
  50. 'spaced-comment':0,
  51. 'no-cond-assign':0,
  52. 'eqeqeq':0,
  53. 'standard%2Fcomputed-property-even-spacing':0,
  54. 'block-spacing':0
  55. // 'computed-property-even-spacing': 0
  56. }
  57. }