Improve consistency of backticks for plugin names (#2460)

This commit is contained in:
Charlie Marsh
2023-02-01 19:17:32 -05:00
committed by GitHub
parent 06cbf5a2ae
commit 2abaffd65b
4 changed files with 100 additions and 100 deletions

View File

@@ -26,7 +26,7 @@ pub struct Options {
ignore-overlong-task-comments = true
"#
)]
/// Whether or not line-length violations (`E501`) should be triggered for
/// Whether line-length violations (`E501`) should be triggered for
/// comments starting with `task-tags` (by default: ["TODO", "FIXME",
/// and "XXX"]).
pub ignore_overlong_task_comments: Option<bool>,

View File

@@ -6,7 +6,7 @@ use super::hashable::HashableHashMap;
use crate::registry::Rule;
/// A table to keep track of which rules are enabled
/// and whether or not they should be autofixed.
/// and Whether they should be autofixed.
#[derive(Debug, Hash)]
pub struct RuleTable {
/// Maps rule codes to a boolean indicating if the rule should be autofixed.