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