diff options
| author | r-richmond <rrichmond.gh@gmail.com> | 2020-07-05 15:28:38 -0700 |
|---|---|---|
| committer | r-richmond <rrichmond.gh@gmail.com> | 2020-07-05 15:30:07 -0700 |
| commit | b13f8fdabc46c8308b94ec385474a4a1486e93e7 (patch) | |
| tree | b2af56c960f023f19ee285d2630d90dd6712a937 /scripts | |
| parent | 5ab7fa6b6217991433a0ebddaa242dd18a47d20d (diff) | |
| download | isort-b13f8fdabc46c8308b94ec385474a4a1486e93e7.tar.gz | |
Standarize black config
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/clean.sh | 2 | ||||
| -rwxr-xr-x | scripts/lint.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/scripts/clean.sh b/scripts/clean.sh index d3aa1e6b..c29f4482 100755 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -2,4 +2,4 @@ set -euxo pipefail poetry run isort --profile hug isort/ tests/ scripts/ -poetry run black isort/ tests/ scripts/ -l 100 +poetry run black isort/ tests/ scripts/ diff --git a/scripts/lint.sh b/scripts/lint.sh index e98e032d..086e9112 100755 --- a/scripts/lint.sh +++ b/scripts/lint.sh @@ -1,10 +1,9 @@ #!/bin/bash set -euxo pipefail - poetry run cruft check poetry run mypy --ignore-missing-imports isort/ -poetry run black --check -l 100 isort/ tests/ +poetry run black --check isort/ tests/ poetry run isort --profile hug --check --diff isort/ tests/ poetry run flake8 isort/ tests/ --max-line 100 --ignore F403,F401,W503,E203 poetry run safety check |
