Disable failing eslint rules for tests

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2020-02-09 22:27:27 +01:00 committed by Raimund Schlüßler
parent 2c14c38030
commit b58591ffed
No known key found for this signature in database
GPG key ID: 036FA7EB1A599178

View file

@ -1,5 +1,9 @@
module.exports = {
env: {
jest: true
},
rules: {
"node/no-missing-import": ["off"],
"import/no-unresolved": ["off"],
}
}