From 03427af85b52be981931fbc5cd22b0f45fcf2dc0 Mon Sep 17 00:00:00 2001 From: DonIsaac <22823424+DonIsaac@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:51:40 +0000 Subject: [PATCH] chore(parser): enable lint warnings on missing docs (#6608) Part of https://github.com/oxc-project/backlog/issues/130 --- crates/oxc_parser/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/oxc_parser/src/lib.rs b/crates/oxc_parser/src/lib.rs index fe76fff88..08163b37d 100644 --- a/crates/oxc_parser/src/lib.rs +++ b/crates/oxc_parser/src/lib.rs @@ -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;