Files
nextcloud-photos/eslint.config.js
Louis Chemineau f4eeb64fc0 chore: update to ESLint v9 and adjust code
Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-06-02 11:31:41 +02:00

25 lines
403 B
JavaScript

/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: CC0-1.0
*/
import { recommendedVue2 } from '@nextcloud/eslint-config'
export default [
...recommendedVue2,
{
ignores: [
'js/',
'l10n/',
],
},
{
files: ['**/*.vue'],
rules: {
// TODO: Fix this
'vue/no-boolean-default': 'warn',
'vue/no-unused-refs': 'warn',
},
},
]