Add a README link to each plugin (#611)

This commit is contained in:
Charlie Marsh 2022-11-05 16:18:27 -04:00 committed by GitHub
parent 2727e5f3b7
commit 3597a94818
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 85 additions and 38 deletions

View file

@ -28,6 +28,16 @@ pub fn main(cli: &Cli) -> Result<()> {
output.push('\n');
output.push('\n');
if let Some(url) = check_category.url() {
output.push_str(&format!(
"For more, see [{}]({}) on PyPI.",
check_category.title(),
url
));
output.push('\n');
output.push('\n');
}
output.push_str("| Coade | Name | Message | Fix |");
output.push('\n');
output.push_str("| ---- | ---- | ------- | --- |");