From 870b716681a0c46e918f913cd275da70cd825d42 Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Sat, 25 Apr 2026 18:36:02 +0000 Subject: [PATCH] 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. --- .claude/settings.local.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .claude/settings.local.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..c1bcaa0 --- /dev/null +++ b/.claude/settings.local.json @@ -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)" + ] + } +}