aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-02-26 11:24:59 +0100
committerFelix Morgner <felix.morgner@gmail.com>2025-02-26 11:24:59 +0100
commit440d47cae6431de3332ac934b6056a970cc1a0d7 (patch)
treeaae63811972647f6ffe8a13d440171cfc8752860 /.vscode
parent124d4f363a9d86b023aadec0eb0a3eb6fc1cbfdd (diff)
downloadnewtype-440d47cae6431de3332ac934b6056a970cc1a0d7.tar.xz
newtype-440d47cae6431de3332ac934b6056a970cc1a0d7.zip
build: remove conan
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/c_cpp_properties.json16
-rw-r--r--.vscode/settings.json8
2 files changed, 3 insertions, 21 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
deleted file mode 100644
index 2091cd3..0000000
--- a/.vscode/c_cpp_properties.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "configurations": [
- {
- "name": "Linux",
- "includePath": [
- "${workspaceFolder}/source/lib/include"
- ],
- "defines": [],
- "compilerPath": "/usr/bin/g++",
- "cppStandard": "c++20",
- "intelliSenseMode": "gcc-x64",
- "configurationProvider": "ms-vscode.cmake-tools"
- }
- ],
- "version": 4
-} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 72ff434..f9b4fe7 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -2,20 +2,18 @@
// CMake Configuration
"cmake.configureOnOpen": true,
"cmake.useCMakePresets": "always",
- "cmake.sourceDirectory": "${workspaceFolder}/source",
// C++ Configuration
"[cpp]": {
"editor.formatOnSave": true
},
"C_Cpp.autoAddFileAssociations": false,
- "C_Cpp.intelliSenseEngine": "default",
- "C_Cpp.errorSquiggles": "enabled",
- "C_Cpp.autocomplete": "default",
+ "C_Cpp.intelliSenseEngine": "disabled",
+ "C_Cpp.errorSquiggles": "disabled",
+ "C_Cpp.autocomplete": "disabled",
// RST Configuration
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
- "esbonio.sphinx.confDir": "${workspaceFolder}/doc/src"
}