blob: 9920278654f678f3a43854a95789d6865ecf12ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -euxo pipefail
poetry run cruft check
poetry run mypy --ignore-missing-imports isort/
poetry run black --target-version py36 --check .
poetry run isort --profile hug --check --diff isort/ tests/
poetry run isort --profile hug --check --diff example_isort_formatting_plugin/
poetry run flake8 isort/ tests/
poetry run safety check -i 39462
poetry run bandit -r isort/ -x isort/_vendored
|