From 22f47695834439cd67e5e3688e3f10209f6bb727 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Fri, 19 Mar 2021 22:44:11 +0100 Subject: MAINT: Ignore .vs and .vscode folders Visual Studio and Visual Studio Code store developer- and environment-local data in these folders respectively. The folders are ignored path-agnostic so they are also ignored in case a user opens a subfolder in either IDE. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b5807649b..a5c567d2c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ release/ asio/ local/ indent.sh +.vs +.vscode *.pdb *.sdf *.sln -- cgit v1.2.3 From 362ff0bbd130bed0cad7fede50e417463d047d12 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Fri, 19 Mar 2021 22:55:06 +0100 Subject: MAINT: Ignore local Visual Studio CMake settings file CMakeSettings.json When Visual Studio is used to open and configure the CMake project the CMakeSettings.json file stores CMake configurations. The configuration is developer- and environment-local configuration we do not want to version. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a5c567d2c..397efb9a7 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ build/ compile_commands.json .devcontainer/* __pycache__/ +CMakeSettings.json -- cgit v1.2.3