Add 'CamelCase' to doc_valid_idents

This commit is contained in:
Philipp Hansch 2018-12-11 19:37:43 +01:00
parent d6db67793e
commit ee2abc36a3
No known key found for this signature in database
GPG key ID: B6FA06A6E0E2665B
2 changed files with 4 additions and 0 deletions

View file

@ -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),

View file

@ -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() {}