Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Update configuration.md #484

Merged
merged 1 commit into from
Jul 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update configuration.md
Fixing a missed | to denote that path instructions must be an array of strings
  • Loading branch information
smb06 authored Jul 31, 2025
commit 2b6a7b4413e18bc9e3b4eec34c677c332b9355b5
12 changes: 6 additions & 6 deletions docs/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -919,12 +919,12 @@ and JavaScript files in a repository's `src` directory:
```yaml
path_instructions:
- path: src/**/*.{ts,tsx,js}
instructions:
- Review the React.js/TypeScript/JavaScript code for best practices
- Check for common security vulnerabilities such as:
- SQL Injection
- Insecure dependencies
- Sensitive data exposure
instructions: |
- Review the React.js/TypeScript/JavaScript code for best practices
- Check for common security vulnerabilities such as:
- SQL Injection
- Insecure dependencies
- Sensitive data exposure
```
</TabItem>
</Tabs>
Expand Down