8 lines
141 B
Bash
Executable file
8 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e -x
|
|
|
|
# Use shell.nix if possible.
|
|
|
|
MYPYPATH=$(pwd)/stubs mypy --strict webapp/__init__.py
|
|
black webapp
|
|
black stubs
|