mirror of
https://github.com/nextcloud/tables.git
synced 2025-08-16 15:17:20 +00:00
17 lines
348 B
JavaScript
17 lines
348 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'@nextcloud',
|
|
],
|
|
rules: {
|
|
'jsdoc/require-jsdoc': 'off',
|
|
'jsdoc/tag-lines': 'off',
|
|
'vue/first-attribute-linebreak': 'off',
|
|
'vue/max-attributes-per-line': 'off'
|
|
}
|
|
}
|