diff --git a/.eslintrc.json b/.eslintrc.json index 747e539c62..bf73aac210 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -32,13 +32,15 @@ "sort-imports": [ "error", { "ignoreDeclarationSort": true, "ignoreCase": true } - ] + ], + "no-console": "warn" }, "overrides": [ { "files": ["*.spec.ts", "**/test_utils/*.ts"], "rules": { - "@typescript-eslint/no-non-null-assertion": "off" + "@typescript-eslint/no-non-null-assertion": "off", + "no-console": "off" } } ]