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
e8b7c81
clang-tidy.yml: updated to Clang 23
firewave Mar 14, 2026
6b2b1c2
mitigated `misc-const-correctness` clang-tidy warnings
firewave Mar 14, 2026
182759b
.clang-tidy: disabled `readability-trailing-comma` clang-tidy check
firewave Mar 14, 2026
f7ae38a
fixed `-Wlifetime-safety-intra-tu-suggestions` Clang warnings
firewave Mar 14, 2026
16efc2f
remove
firewave Mar 14, 2026
7825203
.clang-tidy: set `bugprone-exception-escape.TreatFunctionsWithoutSpec…
firewave Mar 20, 2026
f465c52
.clang-tidy: disabled `bugprone-signed-bitwise` for now
firewave Apr 16, 2026
37fc11c
fixed `readability-redundant-parentheses` clang-tidy warnings
firewave Apr 16, 2026
9b5dc50
fixed `-Wlifetime-safety-cross-tu-suggestions` Clang warnings
firewave Apr 16, 2026
531a24e
.clang-tidy: disabled `bugprone-std-exception-baseclass` for now
firewave Apr 16, 2026
50799e9
main.cpp: fixed `misc-include-cleaner` clang-tidy warning
firewave Apr 16, 2026
0997290
mitigated some `bugprone-exception-escape` clang-tidy warnings by mar…
firewave Apr 23, 2026
875e70b
fclose
firewave Apr 23, 2026
75c8e40
readability-redundant-parentheses
firewave Apr 23, 2026
2896d0c
mitigated `misc-explicit-constructor` clang-tidy warnings
firewave May 11, 2026
40bb57c
mitigated `bugprone-assignment-in-selection-statement` clang-tidy war…
firewave May 11, 2026
d350802
mitigated `bugprone-unhandled-code-paths` clang-tidy warnings
firewave May 11, 2026
b38458a
.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