23 lines
361 B
JavaScript
23 lines
361 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
*/
|
|
|
|
import { recommendedVue2 } from '@f7cloud/eslint-config'
|
|
|
|
export default [
|
|
...recommendedVue2,
|
|
{
|
|
ignores: [
|
|
'js/',
|
|
'l10n/',
|
|
],
|
|
},
|
|
{
|
|
rules: {
|
|
'jsdoc/require-jsdoc': 'off',
|
|
'jsdoc/require-param-description': 'off',
|
|
},
|
|
},
|
|
]
|