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
63d95d7
clang-tidy.yml: updated to Clang 23
firewave Mar 14, 2026
162124b
mitigated `misc-const-correctness` clang-tidy warnings
firewave Mar 14, 2026
f2dac8d
.clang-tidy: disabled `readability-trailing-comma` clang-tidy check
firewave Mar 14, 2026
ed011a0
fixed `-Wlifetime-safety-intra-tu-suggestions` Clang warnings
firewave Mar 14, 2026
e2b74b6
remove
firewave Mar 14, 2026
930d871
.clang-tidy: set `bugprone-exception-escape.TreatFunctionsWithoutSpec…
firewave Mar 20, 2026
131355f
.clang-tidy: disabled `bugprone-signed-bitwise` for now
firewave Apr 16, 2026
3747460
fixed `readability-redundant-parentheses` clang-tidy warnings
firewave Apr 16, 2026
8951975
fixed `-Wlifetime-safety-cross-tu-suggestions` Clang warnings
firewave Apr 16, 2026
e03c048
.clang-tidy: disabled `bugprone-std-exception-baseclass` for now
firewave Apr 16, 2026
3c9769b
main.cpp: fixed `misc-include-cleaner` clang-tidy warning
firewave Apr 16, 2026
68ae054
mitigated some `bugprone-exception-escape` clang-tidy warnings by mar…
firewave Apr 23, 2026
76b23b4
fclose
firewave Apr 23, 2026
39a20c9
readability-redundant-parentheses
firewave Apr 23, 2026
f5b280f
mitigated `misc-explicit-constructor` clang-tidy warnings
firewave May 11, 2026
aa79597
mitigated `bugprone-assignment-in-selection-statement` clang-tidy war…
firewave May 11, 2026
94de059
mitigated `bugprone-unhandled-code-paths` clang-tidy warnings
firewave May 11, 2026
30ca105
.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