File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 4
4
<!-- Add all new changes here. They will be moved under a version at release -->
5
5
* ` CHG ` When analyzing the literal table, only the first 100 items are analyzed at most.
6
6
* ` CHG ` When checking type matching for union types, only the first 100 items are checked at most.
7
+ * ` FIX ` --check now respects ignoreDir setting
8
+ * ` FIX ` incorrect argument skip pattern for ` --check_out_path= ` , which incorrectly skips the next argument
7
9
8
10
## 3.13.7
9
11
` 2025-3-10 `
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ function export.runCLI()
247
247
local max = # uris
248
248
table.sort (uris ) -- sort file list to ensure the work distribution order across multiple threads
249
249
for i , uri in ipairs (uris ) do
250
- if (i % numThreads + 1 ) == threadId then
250
+ if (i % numThreads + 1 ) == threadId and not ws . isIgnored ( uri ) then
251
251
files .open (uri )
252
252
diag .doDiagnostic (uri , true )
253
253
-- Print regularly but always print the last entry to ensure
You can’t perform that action at this time.
0 commit comments