Differentiate errors from warnings in VScode ESLint Rules

This commit is contained in:
Germán Jabloñski
2025-05-09 15:16:21 -03:00
parent 127484aeee
commit ec2cd20715

View File

@@ -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 },