Add argument-comment Dylint runner (#14651)

This commit is contained in:
Michael Bolin
2026-03-14 08:18:04 -07:00
committed by GitHub
parent 70eddad6b0
commit 4b31848f5b
20 changed files with 2348 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#![warn(uncommented_anonymous_literal_argument)]
fn describe(prefix: &str, suffix: &str) {
let _ = (prefix, suffix);
}
fn main() {
describe("openai", r"https://api.openai.com/v1");
}