Semgrep’s rule format supports aDocumentation Index
Fetch the complete documentation index at: https://docs.semgrep.dev/llms.txt
Use this file to discover all available pages before exploring further.
fix: key that supports the replacement of metavariables and regex matches with potential fixes. When rules that include a Rule-defined fix are triggered, Semgrep suggests these fixes in your pull request or merge request comments. You can view and easily resolve the findings as part of your code review workflow.
You can apply the Rule-defined fix directly to the file using the --autofix flag. To test the fix before applying it, use both the --autofix and --dryrun flags.
Example Rule-defined fix snippet
Sample Rule-defined fix (view in Playground):Create Rule-defined fix rules
See how to create a Rule-defined fix in the Transforming code with Semgrep’s Rule-defined fix video:Rule-defined fix with regular expression replacement
A variant of thefix key is fix-regex, which applies regular expression replacements (similar to sed) to matches found by Semgrep.
fix-regex has two required fields:
regexspecifies the regular expression to replace within the match found by Semgrepreplacementspecifies what to replace the regular expression with.
fix-regex also takes an optional count field, which specifies how many occurrences of regex to replace with replacement, from left-to-right and top-to-bottom. By default, fix-regex will replace all occurrences of regex. If regex does not match anything, no replacements are made.
The replacement behavior is identical to the re.sub function in Python. See these Python docs for more information.
An example rule with fix-regex is shown below. regex uses a capture group to greedily capture everything up to the final parenthesis in the match found by Semgrep. replacement replaces this with everything in the capture group (\1), a comma, timeout=30, and a closing parenthesis. Effectively, this adds timeout=30 to the end of every match.
Remove a code detected by a rule
Improve your code quality by cleaning up stale code automatically. To remove code idetified by a Rule-defined fix, add thefix key with an empty string "".
For example: