From 698a43abe53b04ea79a8a96edcac03726abde40f Mon Sep 17 00:00:00 2001 From: GTO90 Date: Sun, 15 Dec 2024 16:51:31 -0600 Subject: [PATCH] workspace: Add digibyte.code-workspace for VS Code configuration This commit adds a new `digibyte.code-workspace` file to the repository. This file is used to configure the Visual Studio Code workspace settings for the DigiByte Core project. The `digibyte.code-workspace` file includes: - Folder settings for the project. - File associations to ensure proper syntax highlighting for various C++ standard library headers. - GitHub Copilot advanced settings to specify project directories. This addition aims to improve the development experience for contributors using Visual Studio Code by providing a pre-configured workspace setup. --- digibyte.code-workspace | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 digibyte.code-workspace diff --git a/digibyte.code-workspace b/digibyte.code-workspace new file mode 100644 index 0000000000..7053c3216a --- /dev/null +++ b/digibyte.code-workspace @@ -0,0 +1,58 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "files.associations": { + "chrono": "cpp", + "initializer_list": "cpp", + "cctype": "cpp", + "cmath": "cpp", + "csignal": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "atomic": "cpp", + "strstream": "cpp", + "condition_variable": "cpp", + "cstdint": "cpp", + "future": "cpp", + "iosfwd": "cpp", + "mutex": "cpp", + "ratio": "cpp", + "system_error": "cpp", + "thread": "cpp", + "cinttypes": "cpp", + "typeindex": "cpp", + "ios": "cpp" + }, + "github.copilot.advanced": { + "projectDirectories": [ + ".github", + "src", + "test", + "doc", + "qa" + ], + "excludeDirectories": [ + "**/.deps", + "**/.libs", + "**/.obj" + ], + "excludeFiles": [ + "*.a", + "*.o", + "*.Po", + "*.pc", + "*.log", + ] + } + } +} \ No newline at end of file