mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-12 07:20:02 +03:00
7 lines
222 B
Bash
Executable File
7 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Run mypy checks against all the relevant files
|
|
|
|
# We assume that all `.py` files in git should be checked, and *only* those.
|
|
mypy $@ $(git ls-tree --full-tree -r --name-only HEAD | grep -E '\.py$')
|