f7cloud_client/apps/whiteboard/.eslintrc.cjs
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

32 lines
462 B
JavaScript

/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
module.exports = {
extends: [
'@nextcloud/eslint-config/typescript'
],
rules: {
'jsdoc/require-jsdoc': 'off',
'import/no-unresolved': [
'error',
{
ignore: [
'\\.css$'
]
}
]
},
overrides: [
{
files: [
'src/components/CreatorMenuItem.tsx'
],
rules: {
'indent': 'off'
}
}
]
}