diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-07-04 01:05:49 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-07-04 01:05:49 +0900 |
| commit | a515b5dc7053fa4ba4e93eb744270af640734855 (patch) | |
| tree | dcd46a2c76ed81cb22b1d737e6d5f0e18b0e3e59 /.config | |
| parent | a944fb5c719bb4cdc7d541e28d2dde881eac5248 (diff) | |
| download | dotfiles-a515b5dc7053fa4ba4e93eb744270af640734855.tar.gz dotfiles-a515b5dc7053fa4ba4e93eb744270af640734855.tar.zst dotfiles-a515b5dc7053fa4ba4e93eb744270af640734855.zip | |
claude-code: add settings.json
Diffstat (limited to '.config')
| -rw-r--r-- | .config/claude-code/settings.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.config/claude-code/settings.json b/.config/claude-code/settings.json new file mode 100644 index 0000000..b85331f --- /dev/null +++ b/.config/claude-code/settings.json @@ -0,0 +1,43 @@ +{ + "permissions": { + "allow": [ + "Bash(fd:*)", + "Bash(find:*)", + "Bash(grep:*)", + "Bash(ls:*)", + "Bash(mkdir:*)", + "Bash(rg:*)", + "Bash(touch:*)", + + "Bash(git diff:*)", + "Bash(git fetch:*)", + "Bash(git log:*)", + "Bash(git status:*)" + ], + "deny": [ + "Bash(git push:*)" + ] + }, + "hooks": { + "Notification": [ + { + "hooks": [ + { + "type": "command", + "command": "__claude-code-notify Notification" + } + ] + } + ], + "Stop": [ + { + "hooks": [ + { + "type": "command", + "command": "__claude-code-notify Stop" + } + ] + } + ] + } +} |
