prime/.vscode/settings.json

51 lines
1.2 KiB
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",
2022-10-13 08:19:18 -07:00
"stdio.h": "c",
"stddef.h": "c",
"errno.h": "c",
"ansi_files.h": "c",
2022-10-15 14:47:17 -07:00
"types.h": "c",
2022-10-15 17:58:24 -07:00
"gba.h": "c",
"gbapriv.h": "c",
2022-10-15 19:14:54 -07:00
"os.h": "c",
"sipriv.h": "c"
},
"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"
]
}