kitty/setup.cfg

28 lines
646 B
INI
Raw Normal View History

2016-10-14 10:03:27 +03:00
[flake8]
max-line-length = 160
2017-01-09 08:43:29 +03:00
exclude==template.py,linux-package
extend_ignore=W503,E203
2017-02-08 07:29:36 +03:00
[isort]
profile = black
2017-02-08 07:29:36 +03:00
combine_as_imports = True
multi_line_output = 5
[mypy]
2022-03-12 05:53:10 +03:00
files = kitty,kittens,glfw,*.py,docs/conf.py,shell-integration/ssh/askpass.py
no_implicit_optional = True
sqlite_cache = True
cache_fine_grained = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
warn_unreachable = True
warn_unused_configs = True
check_untyped_defs = True
2020-03-14 09:12:05 +03:00
disallow_untyped_defs = True
2020-03-14 12:20:04 +03:00
disallow_untyped_decorators = True
2020-03-14 12:29:31 +03:00
disallow_untyped_calls = True
disallow_incomplete_defs = True
2021-10-27 11:30:38 +03:00
strict = True
2020-03-14 12:29:31 +03:00
no_implicit_reexport = True