summaryrefslogtreecommitdiff
path: root/checks/editorconfig/package.nix
blob: 5dc71f0c6d9288a1bb1e75b4ec277899cf11d82e (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
''