summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/README.md3
-rw-r--r--.vscode/settings.json.default35
2 files changed, 38 insertions, 0 deletions
diff --git a/.vscode/README.md b/.vscode/README.md
new file mode 100644
index 0000000000..1e83806519
--- /dev/null
+++ b/.vscode/README.md
@@ -0,0 +1,3 @@
+# VSCode Setting
+
+See [docs/ide-support.md](/docs/ide-support.md).
diff --git a/.vscode/settings.json.default b/.vscode/settings.json.default
new file mode 100644
index 0000000000..1868e4f3af
--- /dev/null
+++ b/.vscode/settings.json.default
@@ -0,0 +1,35 @@
+/* Copy this file to settings.json to active these defaults. */
+{
+ "editor.rulers": [
+ 80
+ ],
+ /* C, Makefiles, ASM, Linkerfiles, Properties */
+ "editor.insertSpaces": false,
+ "editor.tabSize": 8,
+ /* Some exceptions based on current trends */
+ "[markdown]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2
+ },
+ "[python]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2
+ },
+ "[shellscript]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2
+ },
+ "[yaml]": {
+ "editor.insertSpaces": true,
+ "editor.tabSize": 2
+ },
+ "files.associations": {
+ "Makefile.*": "makefile",
+ "*.inc": "c",
+ "*.wrap": "c",
+ "*.tasklist": "c",
+ "*.irqlist": "c",
+ "*.mocklist": "c",
+ "*.testlist": "c"
+ }
+} \ No newline at end of file