aboutsummaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.cjs
blob: ed2ab703963c9be08437cfe3acf1ff1d843cfb5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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,
  },
};