summaryrefslogtreecommitdiff
path: root/checks/stylua/package.nix
blob: 57b439b73c23743fe47578bf6c975ce1315189fb (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
''