Disable automatic linting
Stops automatic linting on file save by setting LINT_ENABLED=false in your Peacock config file. Use this when you want to edit files without lint hooks running automatically.
/plugin marketplace add b-open-io/claude-peacock/plugin install peacock@b-open-ioDisable automatic linting on file save.
Usage:
/peacock:disable-linting
Check if the config file exists:
test -f ~/.claude/.peacock-config
If it doesn't exist, output:
ℹ️ Linting is not configured
Linting is already disabled (no config file found).
To enable linting, run /peacock:enable-linting
And exit.
Update the config file to disable linting:
sed -i.bak 's/^LINT_ENABLED=.*/LINT_ENABLED="false"/' ~/.claude/.peacock-config
rm ~/.claude/.peacock-config.bak
Output:
✅ Linting disabled
Automatic linting has been disabled. Lint hooks will no longer run on file save.
Language-specific settings have been preserved. To re-enable linting, run:
/peacock:enable-linting
To completely reset Peacock configuration, run:
/peacock:setup