summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json10
-rw-r--r--.vscode/settings.json34
2 files changed, 0 insertions, 44 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
deleted file mode 100644
index 068d3d784d..0000000000
--- a/.vscode/extensions.json
+++ /dev/null
@@ -1,10 +0,0 @@
-// Suggested extensions
-{
- "recommendations": [
- "EditorConfig.EditorConfig",
- "xaver.clang-format",
- "llvm-vs-code-extensions.vscode-clangd",
- "bierner.github-markdown-preview",
- "donjayamanne.git-extension-pack"
- ]
-}
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index f369ecb174..0000000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,34 +0,0 @@
-// Place your settings in this file to overwrite default and user settings.
-{
- // Unofficially, QMK uses spaces for indentation
- "editor.insertSpaces": true,
- // Configure glob patterns for excluding files and folders.
- "files.exclude": {
- "**/.build": true,
- "**/*.hex": true,
- "**/*.bin": true,
- "**/*.uf2": true
- },
- "files.associations": {
- "*.h": "c",
- "*.c": "c",
- "*.inc": "c",
- "*.cpp": "cpp",
- "*.hpp": "cpp",
- "xstddef": "c",
- "type_traits": "c",
- "utility": "c",
- "ranges": "c"
- },
- "[markdown]": {
- "editor.trimAutoWhitespace": false,
- "files.trimTrailingWhitespace": false
- },
- "python.formatting.provider": "yapf",
- "[json]": {
- "editor.formatOnSave": false
- },
- "clangd.arguments": [
- "--header-insertion=never"
- ]
-}