mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-01-07 04:05:25 +00:00
Add warning for missing documentation
This commit is contained in:
parent
5f8d6b8e0e
commit
55ccd1b4e4
5 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
#![warn(missing_docs)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate serde_derive;
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#![warn(missing_docs)]
|
||||
#![feature(associated_type_defaults)]
|
||||
|
||||
#[macro_use]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#![recursion_limit = "128"]
|
||||
#![feature(decl_macro, proc_macro_hygiene, try_trait)]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate gettext_macros;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#![recursion_limit = "128"]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate quote;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#![feature(try_trait)]
|
||||
#![feature(never_type)]
|
||||
#![feature(proc_macro_hygiene)]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate diesel;
|
||||
|
|
Loading…
Reference in a new issue