From ec2cd207153e85bfec4e5cb62c2eb6562930c41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Jablo=C3=B1ski?= <43938777+GermanJablo@users.noreply.github.com> Date: Fri, 9 May 2025 15:16:21 -0300 Subject: [PATCH] Differentiate errors from warnings in VScode ESLint Rules --- .vscode/settings.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b1311e3825..66d22c4ec4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,9 +7,6 @@ }, "editor.formatOnSaveMode": "file", "eslint.rules.customizations": [ - // Defaultt all ESLint errors to 'warn' to differentate from TypeScript's 'error' level - { "rule": "*", "severity": "warn" }, - // Silence some warnings that will get auto-fixed { "rule": "perfectionist/*", "severity": "off", "fixable": true }, { "rule": "curly", "severity": "off", "fixable": true },