From 2b6a7b4413e18bc9e3b4eec34c677c332b9355b5 Mon Sep 17 00:00:00 2001 From: Sahil Date: Thu, 31 Jul 2025 14:04:25 -0700 Subject: [PATCH] Update configuration.md Fixing a missed | to denote that path instructions must be an array of strings --- docs/reference/configuration.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md index 92a33b6d..eb070e23 100644 --- a/docs/reference/configuration.md +++ b/docs/reference/configuration.md @@ -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 ```