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

Commit 26a7f40

Browse files
author
Hendrik van Antwerpen
committed
Fix inverted condition
1 parent 52887cc commit 26a7f40

File tree

1 file changed

+1
-1
lines changed
  • languages/tree-sitter-stack-graphs-typescript/rust

1 file changed

+1
-1
lines changed

languages/tree-sitter-stack-graphs-typescript/rust/tsconfig.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ impl TsConfig {
389389
}
390390

391391
// reject files not in the include patterns
392-
if include.iter().any(|i| i.matches_path(p)) {
392+
if !include.iter().any(|i| i.matches_path(p)) {
393393
return None;
394394
}
395395

0 commit comments

Comments
 (0)