1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-04-19 07:58:09 +01:00
Files
supervisor/.github/workflows/matchers/mypy.json
Mike Degatano 3ee7c082ec Add mypy to ci and precommit (#5969)
* Add mypy to ci and precommit

* Run precommit mypy in venv

* Fix issues raised in latest version of mypy
2025-06-24 11:48:03 +02:00

16 lines
361 B
JSON

{
"problemMatcher": [
{
"owner": "mypy",
"pattern": [
{
"regexp": "^(.+):(\\d+):\\s(error|warning):\\s(.+)$",
"file": 1,
"line": 2,
"severity": 3,
"message": 4
}
]
}
]
}