Ben Lin
2024-06-18 c3e294ff76aff4654c7218645c7a13b539f66a36
internal/eslint-config/src/index.ts
@@ -25,7 +25,6 @@
    'plugin:prettier/recommended',
  ],
  rules: {
    'no-undef': 'off',
    'no-unused-vars': 'off',
    'no-case-declarations': 'off',
    'no-use-before-define': 'off',
@@ -35,14 +34,13 @@
    'import/newline-after-import': 'error',
    'import/no-duplicates': 'error',
    // '@typescript-eslint/no-unused-vars': [
    //   'error',
    //   {
    //     argsIgnorePattern: '^_',
    //     varsIgnorePattern: '^_',
    //   },
    // ],
    '@typescript-eslint/no-unused-vars': 'off',
    '@typescript-eslint/no-unused-vars': [
      'error',
      {
        argsIgnorePattern: '^_',
        varsIgnorePattern: '^_',
      },
    ],
    '@typescript-eslint/ban-ts-ignore': 'off',
    '@typescript-eslint/ban-ts-comment': 'off',
    '@typescript-eslint/ban-types': 'off',
@@ -65,7 +63,6 @@
    'vue/attribute-hyphenation': 'off',
    'vue/require-default-prop': 'off',
    'vue/require-explicit-emits': 'off',
    'vue/v-on-event-hyphenation': 'off',
    'vue/html-self-closing': [
      'error',
      {