prime/.vscode/settings.json

73 lines
1.6 KiB
JSON
Raw Normal View History

{
"[c]": {
"files.encoding": "shiftjis",
"editor.defaultFormatter": "xaver.clang-format"
},
"[cpp]": {
"files.encoding": "shiftjis",
"editor.defaultFormatter": "xaver.clang-format"
},
2022-11-27 20:56:37 -08:00
"[python]":{
"editor.defaultFormatter": "ms-python.black-formatter"
},
"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",
2022-10-21 23:59:50 -07:00
"sipriv.h": "c",
"dvd_regs.h": "c",
"dvd.h": "c",
2022-10-22 09:49:11 -07:00
"dvdpriv.h": "c",
"__ppc_eabi_linker.h": "c",
2022-11-03 01:19:58 -07:00
"hack.h": "c",
"db.h": "c",
2022-11-03 09:17:03 -07:00
"ppcarch.h": "c",
"osalarm.h": "c",
2022-11-05 03:21:17 -07:00
"ospriv.h": "c",
"gx.h": "c",
"osthread.h": "c",
"osserial.h": "c",
"osmutex.h": "c",
"osexception.h": "c",
"oserror.h": "c",
"oscontext.h": "c",
"oscache.h": "c",
"stdlib.h": "c",
"musyx_priv.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"
]
}