Configure coderabbit to be more defensive in PR reviews (#59374)

* Configure coderabbit to be more defensive in PR reviews

* Merge configuration files
This commit is contained in:
Joshua T Flowers 2025-07-07 17:02:38 -04:00 committed by GitHub
parent 5a29dcbe73
commit 48519ad307
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,3 +6,12 @@ reviews:
suggested_labels: false
suggested_reviewers: false
poem: false
path_instructions:
- path: '**/*.{php,js,ts,jsx,tsx}'
instructions: |
Don't trust that extension developers will follow the best practices, make sure the code:
- Guards against unexpected inputs.
- Sanitizes and validates any potentially dangerous inputs.
- Is backwards compatible.
- Is readable and intuitive.
- Has unit or E2E tests where applicable.