1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-19 18:38:58 +00:00

Bump prettier to 3.6.2 (#155281)

This commit is contained in:
Robert Resch
2025-10-27 18:16:13 +01:00
committed by GitHub
parent f028b7ab6e
commit d4a33611f0
2 changed files with 7 additions and 7 deletions

View File

@@ -33,8 +33,8 @@ repos:
rev: v1.37.1 rev: v1.37.1
hooks: hooks:
- id: yamllint - id: yamllint
- repo: https://github.com/pre-commit/mirrors-prettier - repo: https://github.com/rbubley/mirrors-prettier
rev: v3.0.3 rev: v3.6.2
hooks: hooks:
- id: prettier - id: prettier
- repo: https://github.com/cdce8p/python-typing-update - repo: https://github.com/cdce8p/python-typing-update

View File

@@ -10,16 +10,16 @@
// Pyright is too pedantic for Home Assistant // Pyright is too pedantic for Home Assistant
"python.analysis.typeCheckingMode": "basic", "python.analysis.typeCheckingMode": "basic",
"[python]": { "[python]": {
"editor.defaultFormatter": "charliermarsh.ruff" "editor.defaultFormatter": "charliermarsh.ruff",
}, },
"[json][jsonc][yaml]": { "[json][jsonc][yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode",
}, },
"json.schemas": [ "json.schemas": [
{ {
"fileMatch": ["homeassistant/components/*/manifest.json"], "fileMatch": ["homeassistant/components/*/manifest.json"],
// This value differs between working with devcontainer and locally, therefore this value should NOT be in sync! // 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",
} },
] ],
} }