Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorBaker committed Nov 16, 2024
1 parent aa801d3 commit 803b98c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 13 additions & 3 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# We use pointers to aggregates in a couple of places, intentionally.
# void * would look weird.
Checks: '-bugprone-sizeof-expression'
Checks:
- bugprone-*
- clang-analyzer-*
- cppcoreguidelines-*
- modernize-*
- -modernize-use-trailing-return-type
- performance-*
- portability-*
- readability-*
- -readability-identifier-length
FormatStyle: file
InheritParentConfig: true
User: connorbaker
2 changes: 1 addition & 1 deletion packaging/dev-shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ in {
# https://github.com/NixOS/nixpkgs/pull/291814 is available
++ lib.optional (stdenv.cc.isClang && !stdenv.buildPlatform.isDarwin) pkgs.buildPackages.bear
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform) [
(lib.hiPrio pkgs.buildPackages.clang-tools-18)
(lib.hiPrio pkgs.buildPackages.clang-tools_18)
pkgs.buildPackages.llvmPackages_18.lldb
];

Expand Down

0 comments on commit 803b98c

Please sign in to comment.