18 lines
321 B
JavaScript
18 lines
321 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { recommendedJavascript } from '@f7cloud/eslint-config'
|
|
|
|
export default [
|
|
...recommendedJavascript,
|
|
|
|
{
|
|
name: 'notifications/disabled',
|
|
rules: {
|
|
'no-console': 'off',
|
|
},
|
|
},
|
|
]
|