richdocuments/.eslintrc.js
Andy Scherzinger 96e98e85db
fix: Add further SPDX headers
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-09 10:37:23 +02:00

32 lines
648 B
JavaScript

/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
module.exports = {
root: true,
globals: {
t: true,
n: true,
OC: true,
OCA: true,
OCP: true,
$: true,
_: true,
},
extends: [
'@nextcloud',
'plugin:cypress/recommended',
],
env: {
'cypress/globals': true,
},
rules: {
'import/no-named-as-default-member': 'off',
'jsdoc/check-values': 'off',
'jsdoc/valid-types': 'off',
'jsdoc/no-undefined-types': 'off',
'jsdoc/require-param-description': 'off',
'jsdoc/require-param-type': 'off',
'jsdoc/require-property-description': 'off',
}
}