Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,10 @@ use nix

- [crystal](https://crystal-lang.org/reference/man/crystal#crystal-tool-format)

### CUE

- [cue-fmt](https://github.com/cue-lang/cue)

### Dart

- [dart analyze](https://dart.dev/tools/dart-analyze)
Expand Down
7 changes: 7 additions & 0 deletions modules/hooks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2661,6 +2661,13 @@ in
entry = "${hooks.crystal.package}/bin/crystal tool format";
files = "\\.cr$";
};
cue-fmt = {
name = "cue fmt";
description = "Format CUE files";
package = tools.cue;
entry = "${hooks.cue-fmt.package}/bin/cue fmt";
files = "\\.cue$";
};
cspell =
{
name = "cspell";
Expand Down
2 changes: 2 additions & 0 deletions nix/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
, conform
, convco
, crystal
, cue
, dart
, deadnix
, deno
Expand Down Expand Up @@ -132,6 +133,7 @@ in
conform
convco
crystal
cue
dart
deadnix
deno
Expand Down