Files
nextcloud-tables/.eslintrc.js
Andy Scherzinger 999bcceddf chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-08-05 20:51:55 +02:00

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'
}
}