diff --git a/eslint.config.mjs b/eslint.config.mjs index b2ffc5807f..8b6b0a7ea4 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -44,8 +44,13 @@ export default [ '@typescript-eslint/no-unused-expressions': 'off', // non-fixable '@typescript-eslint/no-unused-vars': 'off', // non-fixable '@typescript-eslint/no-use-before-define': 'off', // non-fixable + 'jsdoc/check-tag-names': 'off', // need to respect JS + 'jsdoc/reject-function-type': 'off', // need to respect JS + 'jsdoc/reject-any-type': 'off', // need to respect JS + 'jsdoc/require-function-type': 'off', // need to respect JS 'jsdoc/require-param-type': 'off', // need to respect JS 'jsdoc/require-param-description': 'off', // need to respect JS + 'jsdoc/require-throws-type': 'off', // need to respect JS 'no-console': 'off', // non-fixable 'no-unused-vars': 'off', // non-fixable 'no-use-before-define': 'off', // non-fixable diff --git a/src/components/ExtendOneToOneDialog.vue b/src/components/ExtendOneToOneDialog.vue index 320a901efb..a81b419d5b 100644 --- a/src/components/ExtendOneToOneDialog.vue +++ b/src/components/ExtendOneToOneDialog.vue @@ -74,8 +74,7 @@ async function extendOneToOneConversation() {