aboutsummaryrefslogblamecommitdiffhomepage
path: root/.eslintrc.cjs
blob: ee347c09c1c54d31d9ca55393d332ab065bd2f7c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                            


                                            
  
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");

module.exports = {
  root: true,
  extends: [
    "plugin:vue/vue3-essential",
    "eslint:recommended",
    "@vue/eslint-config-prettier",
  ],
  env: {
    "vue/setup-compiler-macros": true,
  },
  rules: {
    "vue/multi-word-component-names": "off",
  },
};