From e8fd536f1cb9ea533bc149d4400df3aca44bc070 Mon Sep 17 00:00:00 2001 From: Thibault <1619359+ThibaultNocchi@users.noreply.github.com> Date: Mon, 29 Mar 2021 16:00:33 +0200 Subject: [PATCH] Added VSC lint on save (#519) --- .vscode/settings.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index da5c547..8a60ef0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,9 @@ -{ - "search.exclude": { - "src/**": true - } -} \ No newline at end of file +{ + "search.exclude": { + "src/**": true + }, + "editor.codeActionsOnSave": { + "source.fixAll.markdownlint": true + }, + "editor.formatOnSave": false +}