mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
698cf99458
* jp cod * just have less code and it works * oops * removing splat cause subrepo is being dumb * git subrepo clone https://github.com/ethteck/splat.git tools/splat subrepo: subdir: "tools/splat" merged: "d7281bae6a" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "d7281bae6a" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * move jp stuff + revert configure * git subrepo pull tools/splat subrepo: subdir: "tools/splat" merged: "c56195a9c5" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "c56195a9c5" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596"
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"editor.rulers": [120],
|
|
"clang-tidy.compilerArgs": [
|
|
"-std=gnu89",
|
|
"-Iinclude",
|
|
"-Iinclude/PR",
|
|
"-Ibuild/include",
|
|
"-Isrc",
|
|
"-D_LANGUAGE_C",
|
|
"-DSCRIPT(...)={}",
|
|
],
|
|
"clang-tidy.blacklist": [
|
|
"include/PR",
|
|
"include/gcc"
|
|
],
|
|
"git.ignoreLimitWarning": true,
|
|
"search.exclude": {
|
|
"**/build/src": true,
|
|
"docs/doxygen": true,
|
|
"ctx.c": true,
|
|
"ver/current": true,
|
|
},
|
|
"python.autoComplete.extraPaths": [
|
|
"./tools"
|
|
],
|
|
"python.analysis.extraPaths": [
|
|
"./tools"
|
|
],
|
|
"[c]": {
|
|
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
|
|
},
|
|
"files.associations": {
|
|
"*.h": "c",
|
|
},
|
|
"C_Cpp.autoAddFileAssociations": false,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.splat_cache": true,
|
|
".ninja*": true,
|
|
"ver/current": true,
|
|
}
|
|
}
|