Skip to content

Commit

Permalink
feat(linter): Implement plugin-jsdoc/check-property-names (#2989)
Browse files Browse the repository at this point in the history
  • Loading branch information
leaysgur authored Apr 16, 2024
1 parent 6a53fa3 commit df2036e
Show file tree
Hide file tree
Showing 3 changed files with 562 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ mod nextjs {
/// <https://github.com/gajus/eslint-plugin-jsdoc>
mod jsdoc {
pub mod check_access;
pub mod check_property_names;
pub mod empty_tags;
}

Expand Down Expand Up @@ -685,6 +686,7 @@ oxc_macros::declare_all_lint_rules! {
nextjs::no_unwanted_polyfillio,
nextjs::no_before_interactive_script_outside_document,
jsdoc::check_access,
jsdoc::check_property_names,
jsdoc::empty_tags,
tree_shaking::no_side_effects_in_initialization,
}
Loading

0 comments on commit df2036e

Please sign in to comment.