From ac9bd1345827c0b95b06d99c3d9be0fc84011e09 Mon Sep 17 00:00:00 2001 From: gkeyboard Date: Thu, 23 Feb 2023 01:52:44 +0700 Subject: [PATCH] Revert "Delete settings.json" This reverts commit 5b6f5b5ef3ac136e55d25fa1be6ae13ecde4898a. --- .vscode/settings.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000000..462c456b489a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,32 @@ +// 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 + }, + "cmake.sourceDirectory": "${workspaceFolder}/lib/googletest/googlemock" +}