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
34dad93
mitigated `misc-const-correctness` clang-tidy warnings
firewave Mar 14, 2026
c855c4b
.clang-tidy: disabled `readability-trailing-comma` clang-tidy check
firewave Mar 14, 2026
bf7de47
fixed `-Wlifetime-safety-intra-tu-suggestions` Clang warnings
firewave Mar 14, 2026
52ed73f
remove
firewave Mar 14, 2026
da592da
.clang-tidy: set `bugprone-exception-escape.TreatFunctionsWithoutSpec…
firewave Mar 20, 2026
c6d88e1
.clang-tidy: disabled `bugprone-signed-bitwise` for now
firewave Apr 16, 2026
945bbd5
fixed `readability-redundant-parentheses` clang-tidy warnings
firewave Apr 16, 2026
5040f0f
fixed `-Wlifetime-safety-cross-tu-suggestions` Clang warnings
firewave Apr 16, 2026
e11edec
.clang-tidy: disabled `bugprone-std-exception-baseclass` for now
firewave Apr 16, 2026
08c4e6a
main.cpp: fixed `misc-include-cleaner` clang-tidy warning
firewave Apr 16, 2026
6c3679d
mitigated some `bugprone-exception-escape` clang-tidy warnings by mar…
firewave Apr 23, 2026
ada87e5
fclose
firewave Apr 23, 2026
2b3f553
readability-redundant-parentheses
firewave Apr 23, 2026
5ebac53
mitigated `misc-explicit-constructor` clang-tidy warnings
firewave May 11, 2026
4323224
mitigated `bugprone-assignment-in-selection-statement` clang-tidy war…
firewave May 11, 2026
ab41dec
mitigated `bugprone-unhandled-code-paths` clang-tidy warnings
firewave May 11, 2026
6ed1332
.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