credo-config
Installation
SKILL.md
Credo Configuration
RULES — Follow these with no exceptions
- Always run
mix credo gen.configfirst — never hand-craft .credo.exs from scratch - Use
--strictin CI — enables additional checks that are disabled by default - Add inline disables sparingly — document why each exception is necessary
- Custom checks belong in
lib/credo/checks/— never inline them in application code - Run Credo before every commit — catch issues before they reach CI
- Address all findings — don't suppress without understanding why the check fires
End-to-End Workflow
Follow this sequence when setting up or customizing Credo: