prime/.vscode/settings.json

93 lines
2.1 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-28 04:56:37 +00:00
"[python]":{
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.tabSize": 2,
"files.associations": {
2022-10-08 02:38:36 +00:00
"source_location": "cpp",
2022-10-13 15:19:18 +00:00
"stdio.h": "c",
"stddef.h": "c",
"errno.h": "c",
"ansi_files.h": "c",
2022-10-15 21:47:17 +00:00
"types.h": "c",
2022-10-16 00:58:24 +00:00
"gba.h": "c",
"gbapriv.h": "c",
2022-10-16 02:14:54 +00:00
"os.h": "c",
2022-10-22 06:59:50 +00:00
"sipriv.h": "c",
"dvd_regs.h": "c",
"dvd.h": "c",
2022-10-22 16:49:11 +00:00
"dvdpriv.h": "c",
"__ppc_eabi_linker.h": "c",
2022-11-03 08:19:58 +00:00
"hack.h": "c",
"db.h": "c",
2022-11-03 16:17:03 +00:00
"ppcarch.h": "c",
"osalarm.h": "c",
2022-11-05 10:21:17 +00: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 08:11:11 +00:00
"trees.h": "c",
"musyx.h": "c",
2022-12-18 04:08:25 +00:00
"dsp_import.h": "c",
2022-12-18 05:18:29 +00:00
"osinterrupt.h": "c",
2022-12-20 23:19:11 +00:00
"osmodule.h": "c",
"dsp_regs.h": "c",
2022-12-21 02:09:34 +00:00
"dsp.h": "c",
"ar.h": "c",
"osrtcpriv.h": "c",
2022-12-24 22:54:58 +00:00
"osbootinfo.h": "c",
"assert.h": "c",
2022-12-25 01:07:56 +00:00
"math.h": "c",
2023-01-13 01:23:52 +00:00
"gxpriv.h": "c",
"osfastcast.h": "c",
2023-01-16 05:20:58 +00:00
"osfont.h": "c",
"arq.h": "c",
2023-02-07 13:51:34 +00:00
"string.h": "c",
2023-03-30 02:27:34 +00:00
"hw_regs.h": "c",
"synth.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-13 06:15:26 +00:00
},
],
"C/C++ Include Guard.Auto Update Path Allowlist": [
"include"
],
2022-10-13 06:15:26 +00:00
"C/C++ Include Guard.Auto Update Path Blocklist": [
"include/zlib"
]
}