.eslintrc.js 358 B

1234567891011121314
  1. module.exports = {
  2. root: true,
  3. parser: "vue-eslint-parser",
  4. parserOptions: {
  5. parser: "@typescript-eslint/parser",
  6. },
  7. extends: ["plugin:vue/vue3-recommended", "plugin:prettier/recommended"],
  8. rules: {
  9. "vue/no-v-html": 0,
  10. "vue/v-on-event-hyphenation": 0,
  11. "vue/no-template-shadow": 0,
  12. "vue/multi-word-component-names": 0,
  13. },
  14. };