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.

18 lines
425 B

1 month ago
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true,
  5. },
  6. extends: [
  7. "eslint:recommended",
  8. "plugin:vue/essential",
  9. ],
  10. parserOptions: {
  11. parser: "babel-eslint",
  12. },
  13. rules: {
  14. "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
  15. "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
  16. "prettier/prettier": "error",
  17. },
  18. };