File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 3
3
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
4
4
//!
5
5
//! CLI application with which you can analyze Spotify endsong.json files
6
- #![ forbid ( unsafe_code) ]
6
+ #![ deny ( unsafe_code) ]
7
7
// To require working docs
8
- #![ forbid ( missing_docs) ]
9
- #![ forbid ( clippy:: missing_docs_in_private_items) ]
10
- #![ forbid ( rustdoc:: broken_intra_doc_links) ]
11
- #![ forbid ( rustdoc:: private_intra_doc_links) ]
12
- #![ forbid ( rustdoc:: missing_crate_level_docs) ]
13
- #![ forbid ( rustdoc:: invalid_codeblock_attributes) ]
14
- #![ forbid ( rustdoc:: invalid_rust_codeblocks) ]
15
- #![ forbid ( rustdoc:: bare_urls) ]
16
- #![ forbid ( clippy:: pedantic) ]
8
+ #![ deny ( missing_docs) ]
9
+ #![ deny ( clippy:: missing_docs_in_private_items) ]
10
+ #![ deny ( rustdoc:: broken_intra_doc_links) ]
11
+ #![ deny ( rustdoc:: private_intra_doc_links) ]
12
+ #![ deny ( rustdoc:: missing_crate_level_docs) ]
13
+ #![ deny ( rustdoc:: invalid_codeblock_attributes) ]
14
+ #![ deny ( rustdoc:: invalid_rust_codeblocks) ]
15
+ #![ deny ( rustdoc:: bare_urls) ]
16
+ #![ deny ( clippy:: pedantic) ]
17
17
#![ allow( clippy:: cast_precision_loss) ]
18
18
#![ allow( clippy:: cast_sign_loss) ]
19
19
#![ allow( clippy:: cast_possible_truncation) ]
You can’t perform that action at this time.
0 commit comments