diff --git a/.vscode/settings.json b/.vscode/settings.json index 59562e2..5c9c42f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,12 +12,18 @@ "source.organizeImports": false }, + // Silent the stylistic rules in you IDE, but still auto fix them // Silent the stylistic rules in you IDE, but still auto fix them "eslint.rules.customizations": [ - { - "rule": "@stylistic/*", - "severity": "off" - } + { "rule": "@stylistic/*", "severity": "off" }, + { "rule": "*-indent", "severity": "off" }, + { "rule": "*-spacing", "severity": "off" }, + { "rule": "*-spaces", "severity": "off" }, + { "rule": "*-order", "severity": "off" }, + { "rule": "*-dangle", "severity": "off" }, + { "rule": "*-newline", "severity": "off" }, + { "rule": "*quotes", "severity": "off" }, + { "rule": "*semi", "severity": "off" } ], // The following is optional.