diff --git a/dev/bots/analyze_snippet_code.dart b/dev/bots/analyze_snippet_code.dart index 4453b52b992..c75b1521e61 100644 --- a/dev/bots/analyze_snippet_code.dart +++ b/dev/bots/analyze_snippet_code.dart @@ -677,7 +677,8 @@ class _SnippetChecker { line.contains('```swift') || line.contains('```glsl') || line.contains('```json') || - line.contains('```csv')) { + line.contains('```csv') || + line.contains('```sh')) { inOtherBlock = true; } else if (line.startsWith(_uncheckedCodeBlockStartRegex)) { // this is an intentionally-unchecked block that doesn't appear in the API docs.