prime/.vscode/settings.json

91 lines
2.0 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",
"gxenum.h": "c",
2022-12-16 00:11:11 -08:00
"trees.h": "c",
"musyx.h": "c",
2022-12-17 20:08:25 -08:00
"dsp_import.h": "c",
2022-12-17 21:18:29 -08:00
"osinterrupt.h": "c",
2022-12-20 15:19:11 -08:00
"osmodule.h": "c",
"dsp_regs.h": "c",
2022-12-20 18:09:34 -08:00
"dsp.h": "c",
"ar.h": "c",
"osrtcpriv.h": "c",
2022-12-24 14:54:58 -08:00
"osbootinfo.h": "c",
"assert.h": "c",
2022-12-24 17:07:56 -08:00
"math.h": "c",
2023-01-12 17:23:52 -08:00
"gxpriv.h": "c",
"osfastcast.h": "c",
2023-01-15 21:20:58 -08:00
"osfont.h": "c",
"arq.h": "c",
"string.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"
]
}