mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#! /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
|