26 lines
534 B
JavaScript
26 lines
534 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
module.exports = {
|
|
globals: {
|
|
appVersion: true
|
|
},
|
|
parserOptions: {
|
|
requireConfigFile: false
|
|
},
|
|
extends: [
|
|
'@nextcloud'
|
|
],
|
|
rules: {
|
|
'jsdoc/require-jsdoc': 'off',
|
|
'jsdoc/tag-lines': 'off',
|
|
'vue/first-attribute-linebreak': 'off',
|
|
'import/extensions': 'off',
|
|
'import/no-unresolved': ['error', { 'ignore': ["\\?raw"] }],
|
|
'vue/no-v-model-argument': 'off',
|
|
'vue/no-v-html': 'off'
|
|
}
|
|
}
|