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
3eb3299
clang-tidy.yml: updated to Clang 23
firewave Mar 14, 2026
f44c8fa
mitigated `misc-const-correctness` clang-tidy warnings
firewave Mar 14, 2026
9e49cca
.clang-tidy: disabled `readability-trailing-comma` clang-tidy check
firewave Mar 14, 2026
6272f12
fixed `-Wlifetime-safety-intra-tu-suggestions` Clang warnings
firewave Mar 14, 2026
1de80f0
remove
firewave Mar 14, 2026
fb469d6
.clang-tidy: set `bugprone-exception-escape.TreatFunctionsWithoutSpec…
firewave Mar 20, 2026
c83a452
.clang-tidy: disabled `bugprone-signed-bitwise` for now
firewave Apr 16, 2026
7e37f15
fixed `readability-redundant-parentheses` clang-tidy warnings
firewave Apr 16, 2026
6484eb1
fixed `-Wlifetime-safety-cross-tu-suggestions` Clang warnings
firewave Apr 16, 2026
0d1462c
.clang-tidy: disabled `bugprone-std-exception-baseclass` for now
firewave Apr 16, 2026
ed1a8a0
main.cpp: fixed `misc-include-cleaner` clang-tidy warning
firewave Apr 16, 2026
0d5d407
mitigated some `bugprone-exception-escape` clang-tidy warnings by mar…
firewave Apr 23, 2026
686b119
fclose
firewave Apr 23, 2026
f75d102
readability-redundant-parentheses
firewave Apr 23, 2026
4591747
mitigated `misc-explicit-constructor` clang-tidy warnings
firewave May 11, 2026
d992bee
mitigated `bugprone-assignment-in-selection-statement` clang-tidy war…
firewave May 11, 2026
bb3d268
mitigated `bugprone-unhandled-code-paths` clang-tidy warnings
firewave May 11, 2026
8e2bf42
.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