diff --git a/.eslintrc.js b/.eslintrc.js index 359edb271..aa273da5e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -133,6 +133,7 @@ module.exports = { }], 'import/no-duplicates': 'error', 'import/no-extraneous-dependencies': 'error', + 'import/no-named-as-default': 'off', // Doesn't work with type imports 'no-duplicate-imports': 'off', 'unused-imports/no-unused-imports-ts': 'error', diff --git a/package.json b/package.json index a7abcafce..d5e7896a4 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "docker:stop": "./test/docker/docker-stop.sh", "docs": "typedoc", "jest": "jest --coverageReporters text-summary --", - "lint": "eslint . --cache --ignore-path .gitignore", + "lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0", "prepare": "npm run build", "start": "node ./bin/server.js", "start:file": "node ./bin/server.js -c config/file.json -f ./data",