xieb
2023-09-13 3667807a7b7418efc090ee3fa6a6b734bc3080bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
  env: {
    browser: true,
    commonjs: true,
    es2021: true,
    node: true,
  },
  extends: ['standard', 'plugin:vue/vue3-essential', './.eslintrc-auto-import.json'],
  parserOptions: {
    ecmaVersion: 12,
    parser: '@typescript-eslint/parser'
  },
  plugins: ['vue', '@typescript-eslint'],
  rules: {
    'comma-dangle': 'off',
    'import/no-absolute-path': 'off',
    'no-unused-vars': 'off',
    camelcase: 'off',
    'no-redeclare': 'off',
    'vue/no-unused-components': 'off',
  }
}