aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/tests/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/tests/.eslintrc.js')
-rw-r--r--core/src/tests/.eslintrc.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/src/tests/.eslintrc.js b/core/src/tests/.eslintrc.js
new file mode 100644
index 00000000000..598fc5c28b4
--- /dev/null
+++ b/core/src/tests/.eslintrc.js
@@ -0,0 +1,13 @@
+/**
+ * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+module.exports = {
+ globals: {
+ jsdom: true,
+ sinon: true,
+ },
+ rules: {
+ 'node/no-unpublished-import': 'off',
+ },
+}