diff --git a/src/components/CronTab/src/validator.ts b/src/components/CronTab/src/validator.ts
index 02c72b6e..cf5becea 100644
--- a/src/components/CronTab/src/validator.ts
+++ b/src/components/CronTab/src/validator.ts
@@ -2,6 +2,7 @@ import CronParser from 'cron-parser'
 import type { ValidatorRule } from 'ant-design-vue/lib/form/interface'
 
 const cronRule: ValidatorRule = {
+  // eslint-disable-next-line no-empty-pattern
   validator({}, value) {
     // 没填写就不校验
     if (!value)
diff --git a/src/components/Description/src/Description.vue b/src/components/Description/src/Description.vue
index 73a8a3b5..11194298 100644
--- a/src/components/Description/src/Description.vue
+++ b/src/components/Description/src/Description.vue
@@ -119,6 +119,7 @@ export default defineComponent({
               return null
 
             const getField = get(_data, field)
+            // eslint-disable-next-line no-prototype-builtins
             if (getField && !toRefs(_data).hasOwnProperty(field))
               return isFunction(render) ? render('', _data) : ''
 
diff --git a/src/components/FormDesign/src/components/VFormDesign/components/FormNodeOperate.vue b/src/components/FormDesign/src/components/VFormDesign/components/FormNodeOperate.vue
index 4cf5953b..70d6bd3a 100644
--- a/src/components/FormDesign/src/components/VFormDesign/components/FormNodeOperate.vue
+++ b/src/components/FormDesign/src/components/VFormDesign/components/FormNodeOperate.vue
@@ -28,6 +28,7 @@ const activeClass = computed(() => {
  */
 function handleDelete() {
   const traverse = (schemas: IVFormComponent[]) => {
+    // eslint-disable-next-line array-callback-return
     schemas.some((formItem, index) => {
       const { component, key } = formItem;
       // 处理栅格和标签页布局
diff --git a/src/components/FormDesign/src/components/VFormDesign/index.vue b/src/components/FormDesign/src/components/VFormDesign/index.vue
index 8f27b905..b53aac48 100644
--- a/src/components/FormDesign/src/components/VFormDesign/index.vue
+++ b/src/components/FormDesign/src/components/VFormDesign/index.vue
@@ -160,6 +160,7 @@ function handleCopy(item: IVFormComponent = formConfig.value.currentItem as IVFo
    */
   const traverse = (schemas: IVFormComponent[]) => {
     // 使用some遍历,找到目标后停止遍历
+    // eslint-disable-next-line array-callback-return
     schemas.some((formItem: IVFormComponent, index: number) => {
       if (formItem.key === key) {
         // 判断是不是复制
diff --git a/src/components/FormDesign/src/hooks/useVFormMethods.ts b/src/components/FormDesign/src/hooks/useVFormMethods.ts
index 59b2d13f..c8a2c305 100644
--- a/src/components/FormDesign/src/hooks/useVFormMethods.ts
+++ b/src/components/FormDesign/src/hooks/useVFormMethods.ts
@@ -132,6 +132,7 @@ export function useVFormMethods<E extends EmitsOptions = EmitsOptions>(
    * 获取formData中的值
    * @return {Promise<IAnyObject<any>>}
    */
+  // eslint-disable-next-line @typescript-eslint/require-await
   const getData: IGetData = async () => {
     return cloneDeep(props.formModel)
   }
diff --git a/src/components/Table/src/components/editable/EditableCell.vue b/src/components/Table/src/components/editable/EditableCell.vue
index 858076fb..8bf37143 100644
--- a/src/components/Table/src/components/editable/EditableCell.vue
+++ b/src/components/Table/src/components/editable/EditableCell.vue
@@ -195,6 +195,7 @@ export default defineComponent({
 
       const onChange = unref(getComponentProps)?.onChangeTemp
       if (onChange && isFunction(onChange))
+        // eslint-disable-next-line prefer-rest-params
         onChange(...arguments)
 
       table.emit?.('edit-change', {