mirror of
https://github.com/nextcloud/server.git
synced 2025-05-01 20:40:30 +00:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
module.exports = {
|
|
globals: {
|
|
__webpack_nonce__: true,
|
|
_: true,
|
|
$: true,
|
|
dayNames: true,
|
|
escapeHTML: true,
|
|
firstDay: true,
|
|
moment: true,
|
|
oc_userconfig: true,
|
|
sinon: true,
|
|
},
|
|
plugins: [
|
|
'cypress',
|
|
],
|
|
extends: [
|
|
'@nextcloud/eslint-config/typescript',
|
|
'plugin:cypress/recommended',
|
|
],
|
|
rules: {
|
|
'no-tabs': 'warn',
|
|
// TODO: make sure we fix this as this is bad vue coding style.
|
|
// Use proper sync modifier
|
|
'vue/no-mutating-props': 'warn',
|
|
'vue/custom-event-name-casing': ['error', 'kebab-case', {
|
|
// allows custom xxxx:xxx events formats
|
|
ignores: ['/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u'],
|
|
}],
|
|
},
|
|
settings: {
|
|
jsdoc: {
|
|
mode: 'typescript',
|
|
},
|
|
'import/resolver': {
|
|
typescript: {}, // this loads <rootdir>/tsconfig.json to eslint
|
|
},
|
|
},
|
|
overrides: [
|
|
// Allow any in tests
|
|
{
|
|
files: ['**/*.spec.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
},
|
|
},
|
|
],
|
|
}
|