2023年3月29日 清除验证

This commit is contained in:
bai 2023-03-29 23:10:47 +08:00
parent 10a5d45eef
commit 818b3488fb
3 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@ module.exports = defineConfig({
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
'off',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',

View File

@ -114,8 +114,8 @@
kkzc: '',
});
const { createMessage } = useMessage();
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 24 } });
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 24 } });
const confirmLoading = ref<boolean>(false);
//
const validatorRules = {

View File

@ -13,8 +13,8 @@
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,// 使()
"noUnusedParameters": false,// 使()
"experimentalDecorators": true,
"lib": ["dom", "esnext"],
"types": ["vite/client", "jest"],
@ -24,7 +24,7 @@
"paths": {
"/@/*": ["src/*"],
"/#/*": ["types/*"]
}
},
},
"include": [
"tests/**/*.ts",