@@ -212,7 +212,7 @@ default configuration of Clippy. By default, any configuration will replace the
212
212
* ` doc-valid-idents = ["ClipPy"] ` would replace the default list with ` ["ClipPy"] ` .
213
213
* ` doc-valid-idents = ["ClipPy", ".."] ` would append ` ClipPy ` to the default list.
214
214
215
- ** Default Value:** ` ["KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "DirectX", "ECMAScript", "GPLv2", "GPLv3", "GitHub", "GitLab", "IPv4", "IPv6", "ClojureScript", "CoffeeScript", "JavaScript", "PureScript", "TypeScript", "WebAssembly", "NaN", "NaNs", "OAuth", "GraphQL", "OCaml", "OpenGL", "OpenMP", "OpenSSH", "OpenSSL", "OpenStreetMap", "OpenDNS ", "WebGL", "WebGL2", "WebGPU", "TensorFlow", "TrueType", "iOS", "macOS", "FreeBSD", "TeX", "LaTeX", "BibTeX", "BibLaTeX", "MinGW", "CamelCase"] `
215
+ ** Default Value:** ` ["KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "DirectX", "ECMAScript", "GPLv2", "GPLv3", "GitHub", "GitLab", "IPv4", "IPv6", "ClojureScript", "CoffeeScript", "JavaScript", "PureScript", "TypeScript", "WebAssembly", "NaN", "NaNs", "OAuth", "GraphQL", "OCaml", "OpenDNS", " OpenGL", "OpenMP", "OpenSSH", "OpenSSL", "OpenStreetMap", "OpenTelemetry ", "WebGL", "WebGL2", "WebGPU", "TensorFlow", "TrueType", "iOS", "macOS", "FreeBSD", "TeX", "LaTeX", "BibTeX", "BibLaTeX", "MinGW", "CamelCase"] `
216
216
217
217
---
218
218
** Affected lints:**
@@ -768,7 +768,19 @@ Additional dotfiles (files or directories starting with a dot) to allow
768
768
* [ ` path_ends_with_ext ` ] ( https://rust-lang.github.io/rust-clippy/master/index.html#path_ends_with_ext )
769
769
770
770
771
+ ## ` allowed-duplicate-crates `
772
+ A list of crate names to allow duplicates of
773
+
774
+ ** Default Value:** ` [] `
775
+
776
+ ---
777
+ ** Affected lints:**
778
+ * [ ` multiple_crate_versions ` ] ( https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versions )
779
+
780
+
771
781
## ` enforce-iter-loop-reborrow `
782
+ Whether to recommend using implicit into iter for reborrowed values.
783
+
772
784
#### Example
773
785
``` no_run
774
786
let mut vec = vec![1, 2, 3];
@@ -793,7 +805,7 @@ for _ in &mut *rmvec {}
793
805
794
806
795
807
## ` check-private-items `
796
-
808
+ Whether to also run the listed lints on private items.
797
809
798
810
** Default Value:** ` false `
799
811
@@ -806,9 +818,10 @@ for _ in &mut *rmvec {}
806
818
807
819
808
820
## ` pub-underscore-fields-behavior `
821
+ Lint "public" fields in a struct that are prefixed with an underscore based on their
822
+ exported visibility, or whether they are marked as "pub".
809
823
810
-
811
- ** Default Value:** ` "PublicallyExported" `
824
+ ** Default Value:** ` "PubliclyExported" `
812
825
813
826
---
814
827
** Affected lints:**
0 commit comments