chore(parser): enable lint warnings on missing docs (#6608)

Part of https://github.com/oxc-project/backlog/issues/130
This commit is contained in:
DonIsaac 2024-10-15 21:51:40 +00:00
parent d07a9b0fb3
commit 03427af85b

View file

@ -65,6 +65,7 @@
//! See [full linter example](https://github.com/Boshen/oxc/blob/ab2ef4f89ba3ca50c68abb2ca43e36b7793f3673/crates/oxc_linter/examples/linter.rs#L38-L39)
#![allow(clippy::wildcard_imports)] // allow for use `oxc_ast::ast::*`
#![warn(missing_docs)]
mod context;
mod cursor;