summaryrefslogtreecommitdiff
path: root/checks/biome-fmt/package.nix
blob: 3c6cbc98e1f25e64374b2edfa0d23ac3d1f52db9 (plain)
1
2
3
4
5
6
7
8
9
10
{
  lib,
  runCommand,
  root,
  biome,
}:
runCommand "check-biome-fmt" { } ''
  ${lib.getExe biome} format ${root}/**/*
  touch $out
''