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:
Julian Pawlowski 2026-04-25 18:36:02 +00:00
parent f3b2d8e6ab
commit 870b716681

View 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)"
]
}
}