Skip to content

Commit

Permalink
add vscode folder
Browse files Browse the repository at this point in the history
  • Loading branch information
emrekovanci committed Apr 27, 2024
1 parent f9e52eb commit 8b174f0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ out/

# ide folders
.vs/
.vscode/
.idea/

# vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# cmake
compile_commands.json

Expand Down
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"ms-vscode.cmake-tools",
"twxs.cmake",
"ms-vscode.cpptools",
"llvm-vs-code-extensions.vscode-clangd",
"EditorConfig.EditorConfig",
"IBM.output-colorizer",
]
}
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"files.associations": {
"*.clang-tidy": "yaml",
"*.clang-format": "yaml",
"*.clangd": "yaml",
},
"files.exclude": {
".cache": true,
"**/.vs": true,
"**/build": true,
"**/out": true,
},
"files.readonlyInclude": {
"out/**": true,
"build/**": true,
},
}

0 comments on commit 8b174f0

Please sign in to comment.