summaryrefslogtreecommitdiff
path: root/checks/biome-lint/package.nix
blob: b575d344b50cba650fc72d859dcfd280568326fc (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
''