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