mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
15 lines (14 loc) • 373 B
YAML
rules:
- id: list-find-outside-try
patterns:
- pattern: |
List.find ...
- pattern-not-inside: |
try ... with ... -> ...
message: You should not use List.find outside of a try, or you should use List.find_opt
languages: [ocaml]
severity: WARNING
metadata:
category: best-practice
technology:
- ocaml