mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-05-28 18:43:40 +00:00
feat(settings): add local settings for script permissions
Introduce a new settings file to define permissions for various script executions. Impact: Enables controlled execution of linting, type-checking, and testing scripts.
This commit is contained in:
parent
f3b2d8e6ab
commit
870b716681
1 changed files with 11 additions and 0 deletions
11
.claude/settings.local.json
Normal file
11
.claude/settings.local.json
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"Bash(./scripts/lint-check)",
|
||||||
|
"Bash(./scripts/type-check)",
|
||||||
|
"Bash(./scripts/test tests/services/test_plan_charging.py tests/services/test_energy_calculator.py tests/services/test_power_scheduler.py)",
|
||||||
|
"Bash(./scripts/test)",
|
||||||
|
"Bash(./scripts/check)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue