From: Álvaro Fernández Rojas Date: Tue, 11 Nov 2025 11:44:57 +0000 (+0100) Subject: vscode: enable indentation detection X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=2c6a9d6e12d49af285b84e52c1a5d988438fb1c5;p=project%2Fodhcpd.git vscode: enable indentation detection Fixes issues with VSCode forcing whitespaces instead of tabs for indentation. Fixes: df1824aec66c ("vscode: add tab settings") Signed-off-by: Álvaro Fernández Rojas --- diff --git a/.vscode/settings.json b/.vscode/settings.json index f3894c4..5a9d7fa 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,3 @@ { - "editor.tabSize": 8, - "editor.detectIndentation": false + "editor.tabSize": 8 }