From 633b7e99b3e1d4d9a6edac75c4a652e2dff2b2e2 Mon Sep 17 00:00:00 2001
From: DanielR92 <DanielR92@users.noreply.github.com>
Date: Fri, 21 Oct 2022 18:30:02 +0200
Subject: [PATCH] First Styleguide draft

please try it out. :)
---
 tools/esp8266/.vscode/settings.json | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 tools/esp8266/.vscode/settings.json

diff --git a/tools/esp8266/.vscode/settings.json b/tools/esp8266/.vscode/settings.json
new file mode 100644
index 00000000..d0f78d0a
--- /dev/null
+++ b/tools/esp8266/.vscode/settings.json
@@ -0,0 +1,23 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+    // identify that settings is loaded
+    "workbench.colorCustomizations": {
+        "editorLineNumber.foreground": "#00ff00"
+    },
+
+    "editor.wordWrap": "off",
+    "files.eol" : "\n",
+    "files.trimTrailingWhitespace" : true,
+
+    "diffEditor.ignoreTrimWhitespace": true,
+    "files.autoSave": "afterDelay",
+
+    "editor.tabSize": 4,
+    "editor.insertSpaces": true,
+    // `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
+    // Set to false to keep the values you've explicitly set, above.
+    "editor.detectIndentation": false,
+
+    // https://clang.llvm.org/docs/ClangFormatStyleOptions.html
+    "C_Cpp.clang_format_style": "{BasedOnStyle: Google, BinPackParameters: false, BinPackArguments: false}",
+}