about summary refs log tree commit diff
path: root/nixos/modules/system/etc/check-build-composefs-dump.sh
blob: da61651d1a5d6853300add268b5aa62eef507cc3 (plain) (blame)
1
2
3
4
5
6
7
8
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p black ruff mypy

file=$1

black --check --diff $file
ruff --line-length 88 $file
mypy --strict $file