代码拉取完成,页面将自动刷新
import eslintVuePrettierConfig from '@vue/eslint-config-prettier';
import eslintVueStandardConfig from '@vue/eslint-config-standard';
import { defineConfigWithVueTs, vueTsConfigs as eslintVueTsConfigs } from '@vue/eslint-config-typescript';
import { flatConfigs as eslintImportConfigs } from 'eslint-plugin-import';
import eslintVuePlugin from 'eslint-plugin-vue';
/**
* @type {import("eslint").Linter.Config[]}
*/
export default [
{
ignores: ['/dist/**', '/es/**', '/lib/**', '**/*.vuecode']
},
...eslintVueStandardConfig,
...eslintVuePlugin.configs['flat/essential'],
...defineConfigWithVueTs(eslintVueTsConfigs.recommended),
eslintVuePrettierConfig,
eslintImportConfigs.recommended,
{
name: 'my-eslint-config/overrides',
rules: {
'indent': ['error', 2, { SwitchCase: 1 }],
'linebreak-style': ['warn', 'windows'],
'max-len': ['warn', 160],
'no-console': 'off',
'no-extra-boolean-cast': 'off',
'prettier/prettier': ['warn', { trailingComma: 'none' }],
'quotes': ['error', 'single'],
'semi': ['error', 'always'],
'@typescript-eslint/ban-ts-comment': 'warn',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
varsIgnorePattern: '^__',
argsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_'
}
]
}
},
{
name: 'my-eslint-config/import-sort',
rules: {
'import/named': 'off',
'import/no-named-as-default-member': 'off',
'import/no-unresolved': 'off',
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', ['parent', 'sibling'], 'index'],
pathGroups: [
{
pattern: 'vue*',
group: 'external',
position: 'before'
},
{
pattern: 'vue/**',
group: 'external',
position: 'before'
},
{
pattern: 'vue-*',
group: 'external',
position: 'before'
},
{
pattern: 'vue-*/**',
group: 'external',
position: 'before'
},
{
pattern: '@vue*/**',
group: 'external',
position: 'before'
},
{
pattern: '~/**',
group: 'external',
position: 'after'
},
{
pattern: '@/**',
group: 'internal',
position: 'before'
}
],
pathGroupsExcludedImportTypes: ['builtin'],
alphabetize: {
order: 'asc',
caseInsensitive: true
}
}
],
'sort-imports': [
'error',
{
ignoreDeclarationSort: true
}
]
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
}
}
}
}
];
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。