From d99885496b3ce40e680b49a4acd480adad9606b2 Mon Sep 17 00:00:00 2001 From: Dylan Laduranty Date: Mon, 21 Nov 2022 21:31:12 +0100 Subject: [PATCH] .vscode/settings.json: import initial RIOT-OS style Signed-off-by: Dylan Laduranty --- .vscode/settings.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..bf0fc26932 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,20 @@ +{ + "editor.rulers": [ + 80, + 120 + ], + "editor.detectIndentation": false, + "files.insertFinalNewline": true, + "files.associations": { + "Makefile.*": "makefile", + "*.mk": "makefile" + }, + "[shellscript][c][cpp]": { + "editor.tabSize": 4, + "editor.insertSpaces": true, + }, + "[makefile]": { + "editor.tabSize": 2, + "editor.insertSpaces": true, + }, +}