UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import { recommended } from '@nextcloud/eslint-config'
|
||||
import globals from 'globals'
|
||||
|
||||
export default [
|
||||
...recommended,
|
||||
|
||||
{
|
||||
name: 'talk/ignores',
|
||||
ignores: [
|
||||
// Generated files
|
||||
'src/types/openapi/*',
|
||||
'js/*',
|
||||
// Vendor code
|
||||
'src/utils/**/vendor/*',
|
||||
// Temporary ignore code in documentation examples
|
||||
'docs',
|
||||
// TODO: upstream
|
||||
'openapi-*.json',
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
name: 'talk/config',
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node,
|
||||
IS_DESKTOP: 'readonly',
|
||||
__webpack_public_path__: 'writable',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: 'talk/disabled-during-migration',
|
||||
rules: {
|
||||
'@nextcloud/l10n-non-breaking-space': 'off', // changes translation strings
|
||||
'@nextcloud/l10n-non-breaking-space-vue': 'off', // changes translation strings
|
||||
'@typescript-eslint/no-unused-expressions': 'off', // non-fixable
|
||||
'@typescript-eslint/no-unused-vars': 'off', // non-fixable
|
||||
'@typescript-eslint/no-use-before-define': 'off', // non-fixable
|
||||
'jsdoc/check-tag-names': 'off', // need to respect JS
|
||||
'jsdoc/reject-function-type': 'off', // need to respect JS
|
||||
'jsdoc/reject-any-type': 'off', // need to respect JS
|
||||
'jsdoc/require-function-type': 'off', // need to respect JS
|
||||
'jsdoc/require-param-type': 'off', // need to respect JS
|
||||
'jsdoc/require-param-description': 'off', // need to respect JS
|
||||
'jsdoc/require-throws-type': 'off', // need to respect JS
|
||||
'no-console': 'off', // non-fixable
|
||||
'no-unused-vars': 'off', // non-fixable
|
||||
'no-useless-assignment': 'off', // non-fixable
|
||||
'no-use-before-define': 'off', // non-fixable
|
||||
'vue/no-boolean-default': 'off', // non-fixable
|
||||
'vue/no-required-prop-with-default': 'off', // non-fixable
|
||||
'vue/no-unused-properties': 'off', // non-fixable
|
||||
'vue/no-unused-refs': 'off', // non-fixable
|
||||
},
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user