prime/.vscode/settings.json

42 lines
998 B
JSON
Raw Normal View History

{
"[c]": {
"files.encoding": "shiftjis",
"editor.defaultFormatter": "xaver.clang-format"
},
"[cpp]": {
"files.encoding": "shiftjis",
"editor.defaultFormatter": "xaver.clang-format"
},
"editor.tabSize": 2,
"files.associations": {
2022-10-07 19:38:36 -07:00
"source_location": "cpp",
},
"files.autoSave": "onFocusChange",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"C/C++ Include Guard.Macro Type": "Filename",
"C/C++ Include Guard.Prefix": "_",
"C/C++ Include Guard.Suffix": "",
"C/C++ Include Guard.Comment Style": "Line",
"C/C++ Include Guard.Subfolder Prefixes": [
{
"folderPath": "include/dolphin",
"prefix": "DOLPHIN_"
},
{
"folderPath": "include/musyx",
"prefix": "MUSYX_"
},
{
"folderPath": "include/rstl",
"prefix": "RSTL_"
2022-10-12 23:15:26 -07:00
},
],
"C/C++ Include Guard.Auto Update Path Allowlist": [
"include"
],
2022-10-12 23:15:26 -07:00
"C/C++ Include Guard.Auto Update Path Blocklist": [
"include/zlib"
]
}