Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
chore: fix codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Dec 21, 2022
1 parent 4324a87 commit 7f48f69
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 65 deletions.
3 changes: 2 additions & 1 deletion crates/rome_js_analyze/src/aria_analyzers/nursery.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
//! Generated file, do not edit by hand, see `xtask/codegen`

use rome_analyze::declare_group;
mod no_noninteractive_element_to_interactive_role;
mod use_aria_prop_types;
mod use_aria_props_for_role;
mod use_valid_aria_props;
mod use_valid_lang;
declare_group! { pub (crate) Nursery { name : "nursery" , rules : [self :: use_aria_prop_types :: UseAriaPropTypes , self :: use_aria_props_for_role :: UseAriaPropsForRole , self :: use_valid_aria_props :: UseValidAriaProps , self :: use_valid_lang :: UseValidLang ,] } }
declare_group! { pub (crate) Nursery { name : "nursery" , rules : [self :: no_noninteractive_element_to_interactive_role :: NoNoninteractiveElementToInteractiveRole , self :: use_aria_prop_types :: UseAriaPropTypes , self :: use_aria_props_for_role :: UseAriaPropsForRole , self :: use_valid_aria_props :: UseValidAriaProps , self :: use_valid_lang :: UseValidLang ,] } }
91 changes: 31 additions & 60 deletions crates/rome_service/src/configuration/linter/rules.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ codegen:
cargo codegen-bindings

codegen-linter:
cargo codegen-configuration
cargo codegen-schema
cargo codegen-bindings
cargo lintdoc
cargo codegen analyzer
cargo codegen-configuration
cargo codegen-schema
cargo codegen-bindings
cargo lintdoc

documentation:
cargo lintdoc
Expand Down

0 comments on commit 7f48f69

Please sign in to comment.