UNPKG

@nextcloud/eslint-config

Version:

Eslint shared config for nextcloud apps and libraries

19 lines (18 loc) 872 B
/*! * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ import l10nEnforceEllipsis from "./l10n-enforce-ellipsis.js"; import l10nNonBreakingSpace from "./l10n-non-breaking-space.js"; import noDeprecatedGlobals from "./no-deprecated-globals.js"; import noDeprecatedLibraryExports from "./no-deprecated-library-exports.js"; import noDeprecatedLibraryProps from "./no-deprecated-library-props.js"; import noRemovedGlobals from "./no-removed-globals.js"; export const rules = { 'l10n-enforce-ellipsis': l10nEnforceEllipsis, 'l10n-non-breaking-space': l10nNonBreakingSpace, 'no-deprecated-globals': noDeprecatedGlobals, 'no-removed-globals': noRemovedGlobals, 'no-deprecated-library-exports': noDeprecatedLibraryExports, 'no-deprecated-library-props': noDeprecatedLibraryProps, };