mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
Add 'CamelCase' to doc_valid_idents
This commit is contained in:
parent
d6db67793e
commit
ee2abc36a3
2 changed files with 4 additions and 0 deletions
|
@ -137,6 +137,7 @@ define_Conf! {
|
|||
"iOS", "macOS",
|
||||
"TeX", "LaTeX", "BibTeX", "BibLaTeX",
|
||||
"MinGW",
|
||||
"CamelCase",
|
||||
] => Vec<String>),
|
||||
/// Lint: TOO_MANY_ARGUMENTS. The maximum number of argument a function or method can have
|
||||
(too_many_arguments_threshold, "too_many_arguments_threshold", 7 => u64),
|
||||
|
|
|
@ -174,3 +174,6 @@ fn issue_1920() {}
|
|||
/// Not ok: http://www.unicode.org/
|
||||
/// Not ok: http://www.unicode.org/reports/tr9/#Reordering_Resolved_Levels
|
||||
fn issue_1832() {}
|
||||
|
||||
/// Ok: CamelCase (It should not be surrounded by backticks)
|
||||
fn issue_2395() {}
|
||||
|
|
Loading…
Reference in a new issue