papermario/.vscode/settings.json

28 lines
574 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",
"-Isrc",
"-D_LANGUAGE_C",
2020-10-22 06:54:03 +02:00
"-DSCRIPT(...)={}",
2020-08-18 01:28:37 +02:00
],
"clang-tidy.blacklist": [
"include/PR"
],
"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"
],
}