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.
 
 
 
 

25 lines
561 B

  1. {
  2. "root": true,
  3. "parserOptions": {
  4. "ecmaFeatures": {
  5. "experimentalObjectRestSpread": true
  6. },
  7. "ecmaVersion": 6,
  8. "sourceType": "module"
  9. },
  10. "env": {
  11. "browser": true,
  12. "commonjs": true,
  13. "es6": true
  14. },
  15. "extends": "eslint:recommended",
  16. "plugins": ["vue"],
  17. "rules": {
  18. "indent": ["error", 4, { "SwitchCase": 1 }],
  19. "quotes": ["error", "single"],
  20. "semi": ["error", "always"],
  21. "vue/jsx-uses-vars": 2,
  22. "no-console": ["error"]
  23. }
  24. }