You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/lint.sh

9 lines
150 B
Bash

#!/bin/bash
set -o xtrace
set -o errexit
isort --check-only --diff pwndbg tests
black --diff --check pwndbg tests
flake8 --show-source pwndbg tests