mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
26 lines
No EOL
678 B
TOML
26 lines
No EOL
678 B
TOML
# The contents of this file is based on https://github.com/home-assistant/core/blob/dev/pyproject.toml
|
|
|
|
target-version = "py313"
|
|
|
|
[lint]
|
|
select = [
|
|
"ALL",
|
|
]
|
|
|
|
ignore = [
|
|
"ANN101", # Missing type annotation for `self` in method
|
|
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed
|
|
"D203", # no-blank-line-before-class (incompatible with formatter)
|
|
"D212", # multi-line-summary-first-line (incompatible with formatter)
|
|
"COM812", # incompatible with formatter
|
|
"ISC001", # incompatible with formatter
|
|
]
|
|
|
|
[lint.flake8-pytest-style]
|
|
fixture-parentheses = false
|
|
|
|
[lint.pyupgrade]
|
|
keep-runtime-typing = true
|
|
|
|
[lint.mccabe]
|
|
max-complexity = 25 |