mirror of
https://github.com/quay/quay.git
synced 2025-04-16 23:03:13 +03:00
* chore: pass config to isort as it doesn't always detect it * chore: mark package "test" as local, not stdlib * chore: remove "isort: skip_file" * chore: fix app in test_load_security_information * chore: fix app in test_notification * chore: fix app in test_index_report
27 lines
782 B
TOML
27 lines
782 B
TOML
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py39']
|
|
|
|
[tool.isort]
|
|
known_local_folder = "auth,avatars,buildman,buildtrigger,data,digest,endpoints,features,health,image,notifications,oauth,proxy,storage,test,tools,util,workers,_init,active_migration,app,config,external_libraries,initdb,path_converters,release"
|
|
profile = "black"
|
|
|
|
[tool.pylint.messages_control]
|
|
disable = "missing-docstring,invalid-name,too-many-locals,too-few-public-methods,too-many-lines"
|
|
|
|
[tool.pylint.typecheck]
|
|
ignored-modules = "features,greenlet"
|
|
generated-members = "REQUEST,acl_users,aq_parent,DoesNotExist,id,can"
|
|
|
|
[tool.pylint.format]
|
|
max-line-length = 100
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
|
|
[tool.coverage.report]
|
|
omit = ['test/**', 'venv/**', '**/test/**']
|
|
|
|
[tool.pyright]
|
|
stubPath = 'mypy_stubs'
|