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 336B

12345678910111213
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: ["plugin:vue/essential", "@vue/airbnb"],
  7. rules: {
  8. 'no-param-reassign': 0,
  9. "linebreak-style": 0,
  10. "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
  11. "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
  12. }
  13. };