Skip to content

Commit

Permalink
fix(ci): json5 filter
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf committed Jun 7, 2024
1 parent 556e5e7 commit 6731ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
markdownFilter = path: builtins.match ".*md$" path != null;
binFilter = path: builtins.match ".*bin$" path != null;
jsFilter = path: builtins.match ".*js$" path != null;
jsonFilter = path: builtins.match ".*json*$" path != null;
jsonFilter = path: builtins.match ".*json5?$" path != null;
lockFilter = path: builtins.match ".*lock$" path != null;
filter =
path: type:
Expand Down

0 comments on commit 6731ba4

Please sign in to comment.