-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6eb5e9
commit 32abadf
Showing
68 changed files
with
444 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- uses: pre-commit/[email protected].0 | ||
- uses: pre-commit/[email protected].1 | ||
|
||
|
||
tests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,103 @@ | ||
|
||
line-length = 120 | ||
indent-width = 4 | ||
line-length = 120 | ||
|
||
target-version = "py310" | ||
src = ["src", "test"] | ||
|
||
[lint] | ||
|
||
select = [ | ||
"E", "W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w | ||
"I", # https://docs.astral.sh/ruff/rules/#isort-i | ||
"UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up | ||
|
||
"A", # https://docs.astral.sh/ruff/rules/#flake8-builtins-a | ||
"ASYNC", # https://docs.astral.sh/ruff/rules/#flake8-async-async | ||
"C4", # https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4 | ||
"EM", # https://docs.astral.sh/ruff/rules/#flake8-errmsg-em | ||
"FIX", # https://docs.astral.sh/ruff/rules/#flake8-fixme-fix | ||
"INP", # https://docs.astral.sh/ruff/rules/#flake8-no-pep420-inp | ||
"ISC", # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc | ||
"PIE", # https://docs.astral.sh/ruff/rules/#flake8-pie-pie | ||
"PT", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt | ||
"PTH", # https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth | ||
"RET", # https://docs.astral.sh/ruff/rules/#flake8-return-ret | ||
"SIM", # https://docs.astral.sh/ruff/rules/#flake8-simplify-sim | ||
"SLOT", # https://docs.astral.sh/ruff/rules/#flake8-slots-slot | ||
"T10", # https://docs.astral.sh/ruff/rules/#flake8-debugger-t10 | ||
"TCH", # https://docs.astral.sh/ruff/rules/#flake8-type-checking-tch | ||
"TD", # https://docs.astral.sh/ruff/rules/#flake8-todos-td | ||
|
||
"TRY", # https://docs.astral.sh/ruff/rules/#tryceratops-try | ||
"FLY", # https://docs.astral.sh/ruff/rules/#flynt-fly | ||
"PERF", # https://docs.astral.sh/ruff/rules/#perflint-perf | ||
"RUF", # https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf | ||
|
||
# "PL", # https://docs.astral.sh/ruff/rules/#pylint-pl | ||
# "FURB", # https://docs.astral.sh/ruff/rules/#refurb-furb | ||
src = [ | ||
"src", | ||
"tests" | ||
] | ||
|
||
|
||
[lint] | ||
select = ["ALL"] | ||
|
||
ignore = [ | ||
"D", # https://docs.astral.sh/ruff/rules/#pydocstyle-d | ||
"T20", # https://docs.astral.sh/ruff/rules/#flake8-print-t20 | ||
"DTZ", # https://docs.astral.sh/ruff/rules/#flake8-datetimez-dtz | ||
"SLF", # https://docs.astral.sh/ruff/rules/#flake8-self-slf | ||
|
||
"RET501", # https://docs.astral.sh/ruff/rules/unnecessary-return-none/#unnecessary-return-none-ret501 | ||
"TRY400", # https://docs.astral.sh/ruff/rules/error-instead-of-exception/ | ||
|
||
"A003", # https://docs.astral.sh/ruff/rules/builtin-attribute-shadowing/ | ||
# https://docs.astral.sh/ruff/rules/#flake8-builtins-a | ||
"A003", # Python builtin is shadowed by class attribute {name} from {row} | ||
|
||
# https://docs.astral.sh/ruff/rules/#pyflakes-f | ||
"F401", # {name} imported but unused; consider using importlib.util.find_spec to test for availability | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-bandit-s | ||
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes | ||
|
||
# https://docs.astral.sh/ruff/rules/#pyupgrade-up | ||
"UP038", # Use X | Y in {} call instead of (X, Y) | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-annotations-ann | ||
"ANN101", # Missing type annotation for {name} in method | ||
"ANN102", # Missing type annotation for {name} in classmethod | ||
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in {name} | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-blind-except-ble | ||
"BLE001", # Do not catch blind exception: {name} | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-raise-rse | ||
"RSE102", # Unnecessary parentheses on raised exception | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-commas-com | ||
"COM812", # Trailing comma missing | ||
"COM819", # Trailing comma prohibited | ||
|
||
"UP038", # https://docs.astral.sh/ruff/rules/non-pep604-isinstance/ | ||
# https://docs.astral.sh/ruff/rules/#warning-w_1 | ||
"PLW0603", # Using the global statement to update {name} is discouraged | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-logging-format-g | ||
"G004", # Logging statement uses f-string | ||
|
||
# https://docs.astral.sh/ruff/rules/#refactor-r | ||
"PLR1711", # Useless return statement at end of function | ||
|
||
# https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf | ||
"RUF005", # Consider {expression} instead of concatenation | ||
] | ||
|
||
|
||
[format] | ||
# Use single quotes for non-triple-quoted strings. | ||
quote-style = "single" | ||
|
||
|
||
# https://docs.astral.sh/ruff/settings/#lintflake8-quotes | ||
[lint.flake8-quotes] | ||
inline-quotes = "single" | ||
inline-quotes = "single" | ||
multiline-quotes = "single" | ||
|
||
|
||
[lint.flake8-builtins] | ||
builtins-ignorelist = ["id", "input"] | ||
|
||
|
||
# https://docs.astral.sh/ruff/settings/#lintisort | ||
[lint.isort] | ||
lines-after-imports = 2 # https://docs.astral.sh/ruff/settings/#lint_isort_lines-after-imports | ||
|
||
|
||
[lint.per-file-ignores] | ||
"docs/conf.py" = ["INP001", "A001"] | ||
"setup.py" = ["PTH123"] | ||
"tests/*" = [ | ||
"ISC002", # Implicitly concatenated string literals over multiple lines | ||
"E501", # Line too long | ||
"INP001", # File `FILE_NAME` is part of an implicit namespace package. Add an `__init__.py` | ||
"docs/conf.py" = [ | ||
"INP001", # File `conf.py` is part of an implicit namespace package. Add an `__init__.py`. | ||
"A001", # Variable `copyright` is shadowing a Python builtin | ||
"PTH118", # `os.path.join()` should be replaced by `Path` with `/` operator | ||
"PTH100", # `os.path.abspath()` should be replaced by `Path.resolve()` | ||
] | ||
|
||
"setup.py" = ["PTH123"] | ||
|
||
"tests/*" = [ | ||
"ANN", # https://docs.astral.sh/ruff/rules/#flake8-annotations-ann | ||
|
||
# https://docs.astral.sh/ruff/rules/#flake8-bandit-s | ||
"S101", # Use of assert detected | ||
|
||
[lint.isort] | ||
# https://docs.astral.sh/ruff/settings/#lint_isort_lines-after-imports | ||
lines-after-imports = 2 | ||
# https://docs.astral.sh/ruff/rules/#refactor-r | ||
"PLR2004", # Magic value used in comparison, consider replacing {value} with a constant variable | ||
"PLR0913", # Too many arguments in function definition ({c_args} > {max_args}) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-r requirements_setup.txt | ||
|
||
# Testing | ||
pytest == 8.3.2 | ||
pre-commit == 3.8.0 | ||
pytest-asyncio == 0.23.8 | ||
pytest == 8.3.3 | ||
pre-commit == 4.0.1 | ||
pytest-asyncio == 0.24.0 | ||
aioresponses == 0.7.6 | ||
|
||
# Linter | ||
ruff == 0.5.6 | ||
ruff == 0.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
aiomqtt == 2.2.0 | ||
aiomqtt == 2.3.0 | ||
pyserial-asyncio == 0.6 | ||
easyconfig == 0.3.2 | ||
pydantic == 2.8.2 | ||
smllib == 1.4 | ||
aiohttp == 3.10.1 | ||
smllib == 1.5 | ||
aiohttp == 3.10.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '3.1' | ||
__version__ = '3.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.