| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // eslint.config.cjs
- module.exports = {
- root: true,
- parser: 'vue-eslint-parser',
- parserOptions: {
- parser: '@typescript-eslint/parser',
- sourceType: 'module',
- ecmaVersion: 2020,
- ecmaFeatures: {
- jsx: true,
- },
- },
- env: {
- 'browser': true,
- 'node': true,
- 'vue/setup-compiler-macros': true,
- 'es2020': true
- },
- plugins: ['@typescript-eslint'],
- extends: [
- 'airbnb-base',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:import/recommended',
- 'plugin:import/typescript',
- 'plugin:vue/vue3-recommended',
- 'plugin:prettier/recommended',
- ],
- settings: {
- 'import/resolver': {
- typescript: {
- project: './tsconfig.json',
- },
- },
- },
- rules: {
- 'prettier/prettier': 1,
- // Vue: Recommended rules to be closed or modify
- 'vue/require-default-prop': 0,
- 'vue/singleline-html-element-content-newline': 0,
- 'vue/max-attributes-per-line': 0,
- // Vue: Add extra rules
- 'vue/custom-event-name-casing': [2, 'camelCase'],
- 'vue/no-v-text': 1,
- 'vue/padding-line-between-blocks': 1,
- 'vue/require-direct-export': 1,
- 'vue/multi-word-component-names': ['error', {
- ignores: ['index', 'Index']
- }],
- // Allow @ts-ignore comment
- '@typescript-eslint/ban-ts-comment': 0,
- '@typescript-eslint/no-unused-vars': 1,
- '@typescript-eslint/no-empty-function': 1,
- '@typescript-eslint/no-explicit-any': 0,
- '@typescript-eslint/no-require-imports': 0,
- 'no-undef': 0,
- 'import/extensions': [
- 2,
- 'ignorePackages',
- {
- js: 'never',
- jsx: 'never',
- ts: 'never',
- tsx: 'never',
- },
- ],
- 'no-debugger': 'off',
- 'no-param-reassign': 0,
- 'prefer-regex-literals': 0,
- 'import/no-extraneous-dependencies': 0,
- },
- };
|