From 32e9d4f7b64719493825d726583c28f4d0c2c4cf Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 19 Sep 2022 08:33:29 +0200 Subject: [PATCH] remove flynt --- Makefile | 2 -- pyproject.toml | 4 ---- 2 files changed, 6 deletions(-) diff --git a/Makefile b/Makefile index 0795504..0fc153e 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,10 @@ update: check-poetry ## update the sources and installation and generate "conf/ 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 . diff --git a/pyproject.toml b/pyproject.toml index 1246a44..4c875ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,10 +48,6 @@ lint = [ log_level = "INFO" -[tool.flynt] -line_length = 100 - - [tool.isort] # https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format atomic=true