setup project level linting with flake8

project level formatting with prettier
project level formatting with yapf
This commit is contained in:
smilerz
2024-04-05 08:36:32 -05:00
parent f14acc371d
commit 38b22f3a56
6 changed files with 111 additions and 29 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[tool.yapf]
column_limit = 179
based_on_style = "pep8"
# each_dict_entry_on_separate_line = true
DISABLE_ENDING_COMMA_HEURISTIC = false
COALESCE_BRACKETS = true
DEDENT_CLOSING_BRACKETS = true
FORCE_MULTILINE_DICT = false
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
skip = [".gitignore", ".dockerignore"]
line_length = 179