Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-02-10 00:27:27 +0300
committerRaimund Schlüßler <raimund.schluessler@tu-dresden.de>2020-02-10 16:14:48 +0300
commitb58591ffed71d43c32a0f6c5d67785e19601bf7c (patch)
tree8d2276e5379fe995b8fc40ff26db1702514c3981 /tests
parent2c14c3803017d297f921182291477e1c47e14b74 (diff)
Disable failing eslint rules for tests
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/javascript/unit/.eslintrc.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/javascript/unit/.eslintrc.js b/tests/javascript/unit/.eslintrc.js
index 391d41eb..c562f13d 100644
--- a/tests/javascript/unit/.eslintrc.js
+++ b/tests/javascript/unit/.eslintrc.js
@@ -1,5 +1,9 @@
module.exports = {
env: {
jest: true
+ },
+ rules: {
+ "node/no-missing-import": ["off"],
+ "import/no-unresolved": ["off"],
}
}