[project] name = "wake-alarm" version = "1.0.0" description = "Hibernate-scheduled weekend wake alarm with fan ramp and smart-plug control" requires-python = ">=3.10" dependencies = [ "gatelock @ git+https://github.com/kuhyx/gatelock@v0.1.0", "python-kasa>=0.7", ] [tool.ruff] target-version = "py310" include = ["*.py", "**/*.py"] exclude = [".git", ".venv", "__pycache__", "build", "dist", ".eggs"] [tool.ruff.lint] select = ["ALL"] ignore = [ "D203", "D213", "COM812", "ISC001", "S603", ] fixable = ["ALL"] unfixable = [] [tool.ruff.lint.per-file-ignores] "**/tests/**/*.py" = ["ARG", "D", "PLC0415", "PLR2004", "S101", "SLF001"] "**/test_*.py" = ["ARG", "D", "PLC0415", "PLR2004", "S101", "SLF001"] [tool.ruff.lint.pydocstyle] convention = "google" [tool.ruff.lint.isort] force-single-line = false force-sort-within-sections = true known-first-party = ["wake_alarm"] [tool.ruff.lint.flake8-quotes] docstring-quotes = "double" inline-quotes = "double" [tool.ruff.lint.flake8-tidy-imports] ban-relative-imports = "all" [tool.ruff.format] quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false line-ending = "auto" docstring-code-format = true [tool.mypy] python_version = "3.10" strict = true warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true disallow_incomplete_defs = true check_untyped_defs = true disallow_untyped_decorators = true no_implicit_optional = true warn_redundant_casts = true warn_unused_ignores = true warn_no_return = true warn_unreachable = true disallow_any_unimported = true disallow_any_explicit = false disallow_any_generics = true disallow_subclassing_any = true strict_equality = true extra_checks = true ignore_missing_imports = true show_error_codes = true color_output = true exclude = [".venv/"] [tool.pylint.main] analyse-fallback-blocks = true persistent = true jobs = 0 py-version = "3.10" # "tests" is a basename match: test suites intentionally use patterns # (protected-access, magic-value comparisons) that don't apply to source # code, matching testsAndMisc's pylint scope (tests are linted by ruff, not # pylint there either). ignore = [".venv", "__pycache__", "tests"] ignore-patterns = [".*\\.pyi$"] [tool.pylint.messages_control] # Enable all checks by disabling disable enable = "all" # Globally disabled checks. Each is either a stylistic preference that conflicts # with deliberate, clearer code, or a structural false positive that cannot be # rewritten without harming readability. Everything else stays at max strictness. disable = [ # use-implicit-booleaness family (C1803/C1804/C1805): pylint wants # `not x` / `not s` instead of `x == 0` / `s == ""`. Explicit comparisons # against 0 and "" state numeric/string intent more clearly than truthiness # (and are not equivalent when the value may be None), so we keep them. "use-implicit-booleaness-not-comparison", "use-implicit-booleaness-not-comparison-to-string", "use-implicit-booleaness-not-comparison-to-zero", # consider-using-with (R1732): several subprocess.Popen calls are # intentionally fire-and-forget — the process must outlive the calling # scope and is polled/killed later, so a `with` block is wrong here. "consider-using-with", ] [tool.pylint.design] min-public-methods = 0 max-module-lines = 1000 max-attributes = 10 [tool.pylint.typecheck] # unittest.mock.MagicMock generates assertion/introspection methods at runtime. # wave.open(path, "wb") returns a Wave_write, but pylint's stdlib stub infers the # read-mode Wave_read overload and wrongly reports its setter/writer methods as # missing — list them so the write API is recognised. generated-members = [ ".*\\.assert_called_once_with", ".*\\.assert_called_once", ".*\\.assert_called", ".*\\.assert_not_called", ".*\\.assert_any_call", ".*\\.call_args", ".*\\.call_args_list", ".*\\.call_count", ".*\\.setnchannels", ".*\\.setsampwidth", ".*\\.setframerate", ".*\\.writeframes", ".*\\.writeframesraw", ] [tool.bandit] exclude_dirs = ["tests", ".venv"] [tool.pytest.ini_options] testpaths = ["wake_alarm/tests"] python_files = ["test_*.py", "*_test.py"] python_classes = ["Test*"] python_functions = ["test_*"] addopts = [ "-v", "--strict-markers", "--strict-config", "-ra", "--cov=wake_alarm", "--cov-branch", "--cov-report=term-missing", "--cov-report=lcov", ] filterwarnings = [ "error", "ignore::DeprecationWarning", "default::pytest.PytestUnraisableExceptionWarning", ] [tool.coverage.run] source = ["wake_alarm"] branch = true omit = [ "*/__pycache__/*", "*/tests/*", "*/.venv/*", ] [tool.coverage.report] fail_under = 100 show_missing = true skip_covered = false exclude_lines = [ "pragma: no cover", "raise NotImplementedError", "raise AssertionError", "if TYPE_CHECKING:", 'if __name__ == "__main__":', ] partial_branches = ["pragma: no branch"]