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 44<!-- Add all new changes here. They will be moved under a version at release -->
55* ` CHG ` When analyzing the literal table, only the first 100 items are analyzed at most.
66* ` 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
79
810## 3.13.7
911` 2025-3-10 `
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ function export.runCLI()
247247 local max = # uris
248248 table.sort (uris ) -- sort file list to ensure the work distribution order across multiple threads
249249 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
251251 files .open (uri )
252252 diag .doDiagnostic (uri , true )
253253 -- Print regularly but always print the last entry to ensure
You can’t perform that action at this time.
0 commit comments