stella/.vscode/settings.json

122 lines
3.2 KiB
JSON
Raw Normal View History

2016-10-10 22:22:38 +00:00
// Platzieren Sie Ihre Einstellungen in dieser Datei, um Standard- und Benutzereinstellungen zu überschreiben.
{
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"src/**/*.o": true
},
"editor.trimAutoWhitespace": true,
"editor.useTabStops": false,
"C_Cpp.intelliSenseEngine": "Default",
2017-11-26 22:24:05 +00:00
"files.insertFinalNewline": true,
"files.associations": {
2024-07-21 20:21:45 +00:00
"*.h": "cpp",
2017-12-01 22:17:16 +00:00
"__functional_base": "cpp",
"array": "cpp",
2018-09-13 21:23:21 +00:00
"istream": "cpp",
"locale": "cpp",
"memory": "cpp",
2018-09-13 21:23:21 +00:00
"thread": "cpp",
"tuple": "cpp",
2018-12-16 23:30:42 +00:00
"utility": "cpp",
"*.tcc": "cpp",
"functional": "cpp",
"iomanip": "cpp",
2019-12-13 20:12:51 +00:00
"__cxx_version": "cpp",
2019-12-14 09:04:23 +00:00
"string": "cpp",
2019-12-17 15:57:13 +00:00
"type_traits": "cpp",
2019-12-17 18:34:41 +00:00
"ostream": "cpp",
"__bit_reference": "cpp",
"__config": "cpp",
"__debug": "cpp",
"__errc": "cpp",
"__hash_table": "cpp",
"__locale": "cpp",
"__mutex_base": "cpp",
"__node_handle": "cpp",
"__nullptr": "cpp",
"__split_buffer": "cpp",
"__string": "cpp",
"__threading_support": "cpp",
"__tree": "cpp",
"__tuple": "cpp",
"algorithm": "cpp",
"atomic": "cpp",
"bit": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"complex": "cpp",
"condition_variable": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"exception": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"list": "cpp",
"map": "cpp",
"mutex": "cpp",
"new": "cpp",
"numeric": "cpp",
"optional": "cpp",
"queue": "cpp",
"random": "cpp",
"ratio": "cpp",
"set": "cpp",
"sstream": "cpp",
"stack": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"memory_resource": "cpp",
"cfenv": "cpp",
2020-11-16 21:26:25 +00:00
"cinttypes": "cpp",
"filesystem": "cpp",
"forward_list": "cpp",
"regex": "cpp",
"valarray": "cpp",
2020-12-29 20:50:30 +00:00
"ranges": "cpp",
2020-12-30 21:37:41 +00:00
"stop_token": "cpp",
"version": "cpp",
"shared_mutex": "cpp",
"compare": "cpp",
2024-07-21 20:21:45 +00:00
"concepts": "cpp",
"__verbose_abort": "cpp",
"any": "cpp",
"charconv": "cpp",
"csignal": "cpp",
"execution": "cpp",
"numbers": "cpp",
"span": "cpp",
"unordered_set": "cpp",
"variant": "cpp",
"hash_map": "cpp",
"format": "cpp",
"*.inc": "cpp"
2017-11-26 22:24:05 +00:00
}
}