mirror of
https://github.com/nextcloud/app_api.git
synced 2025-07-20 18:22:35 +00:00
23 lines
475 B
JavaScript
23 lines
475 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2023 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'
|
|
}
|
|
}
|