From 30fad09dac44078c3d85f09246ccdd942c8644d2 Mon Sep 17 00:00:00 2001 From: Stephen Belanger Date: Mon, 1 Apr 2024 09:47:08 -0700 Subject: [PATCH] Use hard tabs for Makefiles (#9978) If you use soft tabs by default, editing Makefiles will be broken as they require tab indentation to parse correctly. Release Notes; - Changed default settings for `Makefile`s to use hard tabs. --- assets/settings/default.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/settings/default.json b/assets/settings/default.json index afc2878a8f..d5cdb1238c 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -560,6 +560,9 @@ "source.organizeImports": true } }, + "Make": { + "hard_tabs": true + }, "Markdown": { "tab_size": 2, "soft_wrap": "preferred_line_length"