add suppress on tracepoint test

This commit is contained in:
PgBiel 2024-06-27 20:01:27 -03:00
parent eebd7f49fe
commit 9b311c1bb2

View File

@ -82,7 +82,7 @@ this is ok
// Error: 10-18 invalid character '/' in a decorator's string // Error: 10-18 invalid character '/' in a decorator's string
/! allow("aaaaa\") /! allow("aaaaa\")
--- allow-suppresses-warns --- --- allow-suppresses-warns-below ---
/! allow("unnecessary-stars") /! allow("unnecessary-stars")
#[**] #[**]
@ -100,6 +100,18 @@ this is ok
/! allow("unnecessary-stars") /! allow("unnecessary-stars")
** **
--- allow-suppresses-warn-with-tracepoint ---
#let f() = {
text(font: "Unbeknownst")[]
}
#let g() = {
f()
}
/! allow("unknown-font-families")
#g()
--- allow-before-parbreak-doesnt-suppress-warn --- --- allow-before-parbreak-doesnt-suppress-warn ---
// Warning: 3:3-3:5 no text within stars // Warning: 3:3-3:5 no text within stars
// Hint: 3:3-3:5 using multiple consecutive stars (e.g. **) has no additional effect // Hint: 3:3-3:5 using multiple consecutive stars (e.g. **) has no additional effect