9 lines
151 B
Bash
9 lines
151 B
Bash
|
#! /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
|