summaryrefslogtreecommitdiff
path: root/checks/editorconfig/package.nix
blob: 97b2a31971f7f4322b59039324915babd997c78b (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  lib,
  runCommand,
  root,
  editorconfig-checker,
}:
runCommand "check-editorconfig" {} ''
  cd ${root}
  ${lib.getExe editorconfig-checker} -exclude '.git' .
  touch $out
''