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.

.eslintrc.js 330B

1234567891011121314151617181920
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. 'extends': [
  7. 'plugin:vue/essential',
  8. '@vue/standard'
  9. ],
  10. rules: {
  11. 'no-console': 'off',
  12. 'no-debugger': 'off',
  13. 'no-trailing-spaces': 0,
  14. indent: 0,
  15. 'space-before-function-paren': 0
  16. },
  17. parserOptions: {
  18. parser: 'babel-eslint'
  19. }
  20. }