diff --git a/eslint/rules/import.js b/eslint/rules/import.js index 06c206d..098af67 100644 --- a/eslint/rules/import.js +++ b/eslint/rules/import.js @@ -5,9 +5,10 @@ const config = { rules: { "import/extensions": ["off"], "import/first": ["error"], + "import/namespace": ["off"], "import/newline-after-import": ["warn"], "import/no-absolute-path": ["error"], - "import/no-cycle": ["error"], + "import/no-cycle": ["off"], "import/no-default-export": ["error"], "import/no-mutable-exports": ["error"], "import/no-relative-packages": ["warn"], diff --git a/eslint/rules/possible-errors.js b/eslint/rules/possible-errors.js index a3d7943..523b95a 100644 --- a/eslint/rules/possible-errors.js +++ b/eslint/rules/possible-errors.js @@ -4,7 +4,7 @@ const config = { rules: { "no-await-in-loop": ["error"], - "no-console": ["warn"], + "no-console": ["warn", { allow: ["error", "warn"] }], "no-constant-binary-expression": ["warn"], "no-promise-executor-return": ["error"], "no-template-curly-in-string": ["error"], diff --git a/eslint/rules/typescript/import.js b/eslint/rules/typescript/import.js index aa4747b..7cedbb9 100644 --- a/eslint/rules/typescript/import.js +++ b/eslint/rules/typescript/import.js @@ -6,7 +6,6 @@ const config = { "import/default": ["off"], "import/export": ["off"], "import/named": ["off"], - "import/namespace": ["off"], "import/no-default-export": ["off"], "import/no-duplicates": ["off"], "import/no-unresolved": ["off"],