diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-01-27 22:44:41 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 16:44:41 +0100 |
commit | 5969df4e303121cca77166df28aa0e9ff2f17e9f (patch) | |
tree | af8b4ad44f17854fb0e8eeeb0d4eb387b0715bbf /.vscode/settings.json | |
parent | 5228d293794bb1137a1f857ade784a39ee460bdd (diff) |
refactor(Core/Logging): switch to fmt style for LOG_ (#10366)
* feat(Core/Common): add support fmt style for ASSERT and ABORT
* correct CheckCompactArrayMaskOverflow
* 1
* Update src/server/game/Spells/Spell.cpp
* rework logging
* add fmt replace logs
* logging
* FMT_LOG_
* settings
* fix startup
* 1
* 2
* 3
* 4
* 5
* fmt::print
* to fmt
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 19347a5284..a4f105dd26 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,7 @@ "*.dist": "properties", "*.crash": "properties", "*.wtf": "properties", + "*.cnf": "properties", "array": "cpp", "atomic": "cpp", "bit": "cpp", @@ -67,7 +68,52 @@ "typeinfo": "cpp", "codecvt": "cpp", "xstring": "cpp", - "variant": "cpp" + "variant": "cpp", + "any": "cpp", + "barrier": "cpp", + "charconv": "cpp", + "compare": "cpp", + "concepts": "cpp", + "coroutine": "cpp", + "csetjmp": "cpp", + "execution": "cpp", + "filesystem": "cpp", + "format": "cpp", + "forward_list": "cpp", + "future": "cpp", + "ios": "cpp", + "latch": "cpp", + "locale": "cpp", + "numbers": "cpp", + "queue": "cpp", + "ranges": "cpp", + "regex": "cpp", + "scoped_allocator": "cpp", + "semaphore": "cpp", + "source_location": "cpp", + "span": "cpp", + "stack": "cpp", + "stop_token": "cpp", + "strstream": "cpp", + "syncstream": "cpp", + "typeindex": "cpp", + "valarray": "cpp", + "xfacet": "cpp", + "xhash": "cpp", + "xiosbase": "cpp", + "xlocale": "cpp", + "xlocbuf": "cpp", + "xlocinfo": "cpp", + "xlocmes": "cpp", + "xlocmon": "cpp", + "xlocnum": "cpp", + "xloctime": "cpp", + "xmemory": "cpp", + "xstddef": "cpp", + "xtr1common": "cpp", + "xtree": "cpp", + "xutility": "cpp", + "*.ipp": "cpp" }, "deno.enable": true, "deno.path": "deps/deno/bin/deno", |