From df04841e20c1deac0aabb5630b8b78f147b98dc9 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sun, 18 Sep 2022 19:02:05 +0200 Subject: [PATCH] -flynt --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 39f67e7..f6743c3 100644 --- a/Makefile +++ b/Makefile @@ -28,12 +28,10 @@ update: install-poetry ## update the sources and installation and generate "con poetry export -f requirements.txt --output conf/requirements.txt lint: ## Run code formatters and linter - poetry run flynt --fail-on-change --line-length=${MAX_LINE_LENGTH} . poetry run isort --check-only . poetry run flake8 . fix-code-style: ## Fix code formatting - poetry run flynt --line-length=${MAX_LINE_LENGTH} . poetry run black --verbose --safe --line-length=${MAX_LINE_LENGTH} --skip-string-normalization . poetry run isort .