prune redundant after 1133b15

This commit is contained in:
Arthur Noel 2023-11-29 17:51:49 +00:00
parent e8acd40bee
commit a45fa0648d
2 changed files with 0 additions and 27 deletions

View file

@ -1,24 +0,0 @@
{ shellcheck
, mypy
, python3
, lib
, ruff
, runCommand
}:
runCommand "lint" { } ''
set -e
mkdir source
cp -r ${./.}/* source
chmod +w source
cd source
echo run shellcheck
${shellcheck}/bin/shellcheck direnvrc
echo run black
${lib.getExe python3.pkgs.black} --check .
echo run ruff
${lib.getExe ruff} tests
echo run mypy
${lib.getExe mypy} tests
touch $out
''

View file

@ -5,10 +5,7 @@ mkShell {
nativeBuildInputs = [
python3.pkgs.pytest
python3.pkgs.mypy
python3.pkgs.black
python3.pkgs.flake8
ruff
shellcheck
direnv
];
}