8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:43:02 +01:00
firebird-mirror/.vscode/settings.json
Artyom Abakumov 6cc3442f8d
Improve vscode settings for debugging (#8289)
* Improve settings for temp files in vs code

Mark temporary files as readable instead of excluding them
Seems like variables does not work with glob pattern, keep only the relative glob pattern

* Open epp files as C++

* Exclude temp files from search

Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com>

---------

Co-authored-by: Artyom Abakumov <artyom.abakumov@red-soft.ru>
Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com>
2024-10-22 07:01:25 -03:00

24 lines
451 B
JSON

// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.rulers": [120],
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"files.readonlyInclude": {
"temp/**": true
},
"files.insertFinalNewline": true,
"files.associations": {
"*.epp": "cpp"
},
"search.exclude": {
"temp/**": true,
"gen/**": true
}
}