papermario/.vscode/settings.json

45 lines
1015 B
JSON
Raw Normal View History

{
"files.eol": "\n",
"files.insertFinalNewline": true,
2020-08-18 00:07:13 +02:00
"editor.rulers": [120],
2020-08-18 01:28:37 +02:00
"clang-tidy.compilerArgs": [
"-std=gnu89",
"-Iinclude",
"-Iinclude/PR",
2021-02-06 06:26:27 +01:00
"-Ibuild/include",
2020-08-18 01:28:37 +02:00
"-Isrc",
"-D_LANGUAGE_C",
2020-10-22 06:54:03 +02:00
"-DSCRIPT(...)={}",
2020-08-18 01:28:37 +02:00
],
"clang-tidy.blacklist": [
2021-01-17 15:40:02 +01:00
"include/PR",
"include/gcc"
],
"git.ignoreLimitWarning": true,
"search.exclude": {
"build": true,
"docs/doxygen": true,
},
2020-11-11 14:52:04 +01:00
"python.autoComplete.extraPaths": [
"./tools"
],
2020-11-29 17:52:16 +01:00
"python.analysis.extraPaths": [
"./tools"
],
2020-12-24 12:15:05 +01:00
"[c]": {
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", // no $, for scripts
},
2020-12-28 08:09:39 +01:00
"files.associations": {
2021-02-05 14:49:50 +01:00
"*.h": "c",
2021-02-08 19:02:14 +01:00
"random": "c",
"array": "c",
"deque": "c",
"string": "c",
"unordered_map": "c",
"vector": "c",
"string_view": "c",
"initializer_list": "c",
"ranges": "c"
2020-12-28 08:09:39 +01:00
},
}