From 519fe4ccbb8812465e809d677ebe6540a626c62a Mon Sep 17 00:00:00 2001 From: Adam Setch <adam.setch@outlook.com> Date: Tue, 4 Jul 2023 08:11:57 -0400 Subject: [PATCH] chore(ide/vscode): fix eslint issues on save (#23129) --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5d888959a9..f9ff7e9101 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -20,5 +20,8 @@ "jest.jestCommandLine": "yarn jest", "npm.packageManager": "yarn", "prettier.prettierPath": "./node_modules/prettier", - "editor.formatOnSave": true + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + } } -- GitLab