diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 982b73084f0..b7e91d2e8b3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,8 +33,8 @@ repos: rev: v1.37.1 hooks: - id: yamllint - - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.3 + - repo: https://github.com/rbubley/mirrors-prettier + rev: v3.6.2 hooks: - id: prettier - repo: https://github.com/cdce8p/python-typing-update diff --git a/.vscode/settings.default.jsonc b/.vscode/settings.default.jsonc index 3d04c152a49..bee6d5ef521 100644 --- a/.vscode/settings.default.jsonc +++ b/.vscode/settings.default.jsonc @@ -10,16 +10,16 @@ // Pyright is too pedantic for Home Assistant "python.analysis.typeCheckingMode": "basic", "[python]": { - "editor.defaultFormatter": "charliermarsh.ruff" + "editor.defaultFormatter": "charliermarsh.ruff", }, "[json][jsonc][yaml]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" + "editor.defaultFormatter": "esbenp.prettier-vscode", }, "json.schemas": [ { "fileMatch": ["homeassistant/components/*/manifest.json"], // This value differs between working with devcontainer and locally, therefore this value should NOT be in sync! - "url": "./script/json_schemas/manifest_schema.json" - } - ] + "url": "./script/json_schemas/manifest_schema.json", + }, + ], }