2021-10-16 10:29:32 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
2021-10-17 12:31:36 +00:00
|
|
|
jest: true,
|
2021-10-16 10:29:32 +00:00
|
|
|
},
|
|
|
|
globals: {
|
|
|
|
defineProps: 'readonly',
|
|
|
|
defineEmits: 'readonly',
|
|
|
|
defineExpose: 'readonly',
|
|
|
|
withDefaults: 'readonly',
|
|
|
|
},
|
|
|
|
parser: 'vue-eslint-parser',
|
|
|
|
parserOptions: {
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: 'module',
|
|
|
|
ecmaFeatures: {
|
|
|
|
tsx: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:import/recommended',
|
|
|
|
'plugin:import/typescript',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'plugin:vue/vue3-recommended',
|
|
|
|
'plugin:prettier/recommended',
|
|
|
|
],
|
|
|
|
plugins: ['simple-import-sort'],
|
|
|
|
rules: {
|
|
|
|
'vue/no-v-html': 0,
|
|
|
|
'simple-import-sort/imports': 1,
|
|
|
|
'simple-import-sort/exports': 1,
|
|
|
|
'sort-imports': 0,
|
|
|
|
'import/order': 0,
|
|
|
|
'import/no-unresolved': [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
ignore: ['^@/', '^@@/'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'vue/no-unused-vars': 1,
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 0,
|
|
|
|
'@typescript-eslint/consistent-type-imports': 1,
|
|
|
|
'@typescript-eslint/no-non-null-assertion': 0,
|
2022-05-04 03:34:34 +00:00
|
|
|
'@typescript-eslint/no-explicit-any': 0,
|
2021-10-16 10:29:32 +00:00
|
|
|
},
|
|
|
|
ignorePatterns: [
|
|
|
|
'dist',
|
|
|
|
'public',
|
|
|
|
'!.eslintrc.js',
|
|
|
|
'!.prettierrc.js',
|
|
|
|
'!.stylelintrc.js',
|
|
|
|
'!.lintstagedrc.js',
|
|
|
|
],
|
|
|
|
}
|