From f2603ba2b2d2f3ea1f02260e3fa0eb29cf8a7632 Mon Sep 17 00:00:00 2001 From: Nathan Musoke Date: Wed, 8 Feb 2017 09:14:18 +1300 Subject: [PATCH] doc-markdown: Allow LaTeX-related words Add "TeX", "LaTeX", "BibTeX" and "BibLaTeX" to the default list of allowed words. --- clippy_lints/src/utils/conf.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/clippy_lints/src/utils/conf.rs b/clippy_lints/src/utils/conf.rs index cfe3f00b717..9b9cc7a8319 100644 --- a/clippy_lints/src/utils/conf.rs +++ b/clippy_lints/src/utils/conf.rs @@ -175,6 +175,7 @@ fn set(&mut self, name: String, value: toml::Value) -> Result<(), Error> { "OpenGL", "TrueType", "iOS", "macOS", + "TeX", "LaTeX", "BibTex", "BibLaTex", ] => Vec), /// 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),