Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
746c5d6
clang-tidy.yml: updated to Clang 23
firewave Mar 14, 2026
b8a194d
mitigated `misc-const-correctness` clang-tidy warnings
firewave Mar 14, 2026
9097d44
.clang-tidy: disabled `readability-trailing-comma` clang-tidy check
firewave Mar 14, 2026
1e41218
fixed `-Wlifetime-safety-intra-tu-suggestions` Clang warnings
firewave Mar 14, 2026
88575f0
remove
firewave Mar 14, 2026
2b3c267
.clang-tidy: set `bugprone-exception-escape.TreatFunctionsWithoutSpec…
firewave Mar 20, 2026
9d260eb
.clang-tidy: disabled `bugprone-signed-bitwise` for now
firewave Apr 16, 2026
0c04a76
fixed `readability-redundant-parentheses` clang-tidy warnings
firewave Apr 16, 2026
620b38e
fixed `-Wlifetime-safety-cross-tu-suggestions` Clang warnings
firewave Apr 16, 2026
9619850
.clang-tidy: disabled `bugprone-std-exception-baseclass` for now
firewave Apr 16, 2026
f1edc0f
main.cpp: fixed `misc-include-cleaner` clang-tidy warning
firewave Apr 16, 2026
4eddddd
mitigated some `bugprone-exception-escape` clang-tidy warnings by mar…
firewave Apr 23, 2026
562a678
fclose
firewave Apr 23, 2026
a14d773
readability-redundant-parentheses
firewave Apr 23, 2026
1f0ca44
mitigated `misc-explicit-constructor` clang-tidy warnings
firewave May 11, 2026
ef6df17
mitigated `bugprone-assignment-in-selection-statement` clang-tidy war…
firewave May 11, 2026
e0d06cc
mitigated `bugprone-unhandled-code-paths` clang-tidy warnings
firewave May 11, 2026
0d302b0
.clang-tidy: removed disabling of `hicpp-*` checks as they no longer …
firewave May 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ Checks: >
-cppcoreguidelines-*,
-fuchsia-*,
-google-*,
-hicpp-*,
-linuxkernel-*,
-llvm-*,
-llvmlibc-*,
Expand All @@ -21,6 +20,8 @@ Checks: >
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
-bugprone-narrowing-conversions,
-bugprone-signed-bitwise,
-bugprone-std-exception-baseclass,
-bugprone-switch-missing-default-case,
-bugprone-throwing-static-initialization,
-bugprone-unchecked-string-to-number-conversion,
Expand All @@ -42,6 +43,8 @@ Checks: >
-readability-isolate-declaration,
-readability-magic-numbers,
-readability-redundant-inline-specifier,
-readability-redundant-parentheses,
-readability-trailing-comma,
-readability-use-concise-preprocessor-directives,
-readability-uppercase-literal-suffix,
-performance-avoid-endl,
Expand All @@ -54,4 +57,6 @@ CheckOptions:
- key: misc-const-correctness.WarnPointersAsValues
value: '1'
- key: misc-const-correctness.TransformPointersAsValues
value: '1'
value: '1'
- key: bugprone-exception-escape.TreatFunctionsWithoutSpecificationAsThrowing
value: OnlyUndefined
141 changes: 0 additions & 141 deletions .github/workflows/CI-mingw.yml

This file was deleted.

198 changes: 0 additions & 198 deletions .github/workflows/CI-unixish.yml

This file was deleted.

Loading
Loading