diff --git a/.editorconfig b/.editorconfig index 0f4b35f..341d20b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,7 +10,7 @@ trim_trailing_whitespace = true insert_final_newline = true [*.py] -line_length = 119 +max_line_length = 100 [{Makefile,**.mk}] indent_style = tab @@ -18,4 +18,3 @@ insert_final_newline = false [*.yml] indent_style = tab -indent_size = 4 diff --git a/pyproject.toml b/pyproject.toml index dc35030..1fade57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ build-backend = "poetry.core.masonry.api" [tool.darker] src = ['.'] revision = "origin/master..." -line_length = 120 +line_length = 100 verbose = true skip_string_normalization = true diff = false @@ -46,16 +46,18 @@ lint = [ ] log_level = "INFO" + [tool.flynt] -line_length = 120 +line_length = 100 + [tool.isort] # https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format atomic=true profile='black' -line_length=120 skip_glob=["*/htmlcov/*","*/migrations/*"] known_first_party=[] +line_length=100 lines_after_imports=2