aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.eslintrc.js
blob: 5f3949bd8a101b97fb7ceef7a383610480e48460 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  root: true,
  env: {
    node: true,
  },
  extends: [
    'plugin:vue/vue3-essential',
    'eslint:recommended',
    '@vue/eslint-config-typescript',
  ],
  rules: {
    'vue/multi-word-component-names': 'off',
  },
}