11 lines
108 B
Bash
Executable file
11 lines
108 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux pipefail
|
|
|
|
main() {
|
|
pyright .
|
|
mypy .
|
|
flake8 src/**.py
|
|
}
|
|
|
|
main "$@"
|