From 6a9e94b0c009112d1613299d1b00b72e0be3b769 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Tue, 21 Jan 2025 20:34:52 +0300 Subject: [PATCH] chore: configure VS Code fix stylistic ESLint errors on save --- .vscode/settings.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1f7be4a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,13 @@ +{ + "editor.formatOnSave": false, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, + "eslint.rules.customizations": [ + { + "rule": "@stylistic/*", + "fixable": true, + "severity": "info" + } + ] +}