mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 18:03:03 +01:00
6cc3442f8d
* 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>
24 lines
451 B
JSON
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
|
|
}
|
|
}
|