tasks/tests/javascript/unit/.eslintrc.js
Raimund Schlüßler b58591ffed
Disable failing eslint rules for tests
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
2020-02-10 14:14:48 +01:00

9 lines
131 B
JavaScript

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