Lint the syntax of changes

This commit is contained in:
Christian Mäder 2021-02-08 11:59:57 +01:00
parent 493fc60401
commit 28e4ae44fb
7 changed files with 67 additions and 4 deletions

View file

@ -1,13 +1,11 @@
[tool.black]
line-length = 100
line_length = 100
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
\.git
| \.venv
| \.netbox
| \.vscode
@ -19,3 +17,10 @@ exclude = '''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "100"