We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef00c0a commit 695c578Copy full SHA for 695c578
src/tools/tidy/src/ui_tests.rs
@@ -8,8 +8,11 @@ use std::ffi::OsStr;
8
use std::fs;
9
use std::path::{Path, PathBuf};
10
11
+// FIXME: GitHub's UI truncates file lists that exceed 1000 entries, so these
12
+// should all be 1000 or lower. Limits significantly smaller than 1000 are also
13
+// desirable, because large numbers of files are unwieldy in general. See issue
14
+// #73494.
15
const ENTRY_LIMIT: usize = 900;
-// FIXME: The following limits should be reduced eventually.
16
const ISSUES_ENTRY_LIMIT: usize = 1811;
17
const ROOT_ENTRY_LIMIT: usize = 870;
18
0 commit comments