From 3b0fb6d47bfb46d68adcaea5ff13931b77fd2988 Mon Sep 17 00:00:00 2001 From: Nacho Vazquez Date: Sun, 7 Jan 2024 20:12:32 -0300 Subject: [PATCH] fix: turn off deprecation warning --- .eslintrc.json | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index eca28ddb1..12c233674 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -70,6 +70,7 @@ "rules": { "etc/no-commented-out-code": "error", "etc/no-const-enum": "error", + "etc/no-deprecated": "off", "@typescript-eslint/prefer-readonly": "error", "sonarjs/cognitive-complexity": ["error", 8], "ordered-imports/ordered-imports": [ diff --git a/package.json b/package.json index 3f65f4948..f4ee55a09 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "delete-path-alias": "node tools/scripts/delete-path-alias.mjs", "e2e": "nx run-many --target=e2e --all --parallel=1", "format": "yarn nx format:write", - "lint": "nx run-many --target=lint --all", + "lint": "nx run-many --target=lint --all --max-warnings=0", "nx": "nx", "start": "nx serve", "test": "nx run-many --target=test --all"