From 0ec76ee5f08ebeaf7913fe8a0e8b80a454b5f6d2 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Fri, 22 Sep 2023 03:59:48 +0800 Subject: [PATCH] chore: update --- .vscode/settings.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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.