aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-27 18:50:42 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-27 18:50:42 -0700
commitee32fa0fba6995f98d2301fdf66ef39229ff49e1 (patch)
treeed861fb2119c91fbe7ab391cf301457f144a31bb /python/Makefile
parent826c7538e091fac14d987a3cd654975da964e240 (diff)
downloadsandcrawler-ee32fa0fba6995f98d2301fdf66ef39229ff49e1.tar.gz
sandcrawler-ee32fa0fba6995f98d2301fdf66ef39229ff49e1.zip
toolchain config updates
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/Makefile b/python/Makefile
index 4cef708..940a7eb 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -17,12 +17,11 @@ lint: ## Run lints (eg, flake8, mypy)
pipenv run flake8 . --exit-zero
pipenv run isort -q -c . || true
pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports
- pipenv run pylint --rcfile=.pylintrc -E --jobs=4 sandcrawler tests/*.py *.py
.PHONY: fmt
fmt: ## Run code formating on all source code
pipenv run isort --atomic .
- pipenv run yapf -p -i -r sandcrawler tests scripts *.py
+ pipenv run black --line-length 96 sandcrawler/ tests/ scripts/ *.py
.PHONY: test
test: ## Run all tests and lints