Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

.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. };