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.

23 lines
434 B

  1. module.exports = {
  2. env: {
  3. browser: true,
  4. es6: true,
  5. node: true,
  6. },
  7. parserOptions: {
  8. parser: "babel-eslint",
  9. },
  10. extends: [
  11. "airbnb-base",
  12. "plugin:vue/recommended",
  13. ],
  14. rules: {
  15. "no-new": "off",
  16. "no-param-reassign": "off",
  17. "no-plusplus": "off",
  18. "object-shorthand": "off",
  19. "prefer-destructuring": "off",
  20. "prefer-template": "off",
  21. "vue/max-attributes-per-line": 3,
  22. },
  23. };