12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- 'extends': [
- 'plugin:vue/vue3-essential',
- 'eslint:recommended',
- '@vue/typescript/recommended'
- ],
- parserOptions: {
- ecmaVersion: 2020
- },
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- '@typescript-eslint/no-explicit-any': ['off'],
- '@typescript-eslint/no-unused-vars': ['off'],
- '@typescript-eslint/ban-types': ['off'],
- '@typescript-eslint/explicit-module-boundary-types': 'off'
- },
- overrides: [
- {
- files: [
- '**/__tests__/*.{j,t}s?(x)',
- '**/tests/unit/**/*.spec.{j,t}s?(x)'
- ],
- env: {
- jest: true
- }
- },
- {
- files: [
- './mock/*.{j,t}s?(x)',
- './src/utils/mock/*.{j,t}s?(x)'
- ],
- rules: {
- 'no-var': ['off'],
- '@typescript-eslint/no-var-requires': ['off'],
- }
- }
- ]
- }
|