diff --git a/crates/biome_js_analyze/src/assists.rs b/crates/biome_js_analyze/src/assists.rs index 5d86871448da..8af9d6470c81 100644 --- a/crates/biome_js_analyze/src/assists.rs +++ b/crates/biome_js_analyze/src/assists.rs @@ -1,4 +1,5 @@ //! Generated file, do not edit by hand, see `xtask/codegen` +pub mod nursery; pub mod source; -::biome_analyze::declare_category! { pub Assists { kind : Action , groups : [self :: source :: Source ,] } } +::biome_analyze::declare_category! { pub Assists { kind : Action , groups : [self :: nursery :: Nursery , self :: source :: Source ,] } } diff --git a/crates/biome_js_analyze/src/assists/nursery.rs b/crates/biome_js_analyze/src/assists/nursery.rs new file mode 100644 index 000000000000..10ef70db0f04 --- /dev/null +++ b/crates/biome_js_analyze/src/assists/nursery.rs @@ -0,0 +1,11 @@ +//! Generated file, do not edit by hand, see `xtask/codegen` + +use biome_analyze::declare_assists_group; + +declare_assists_group! { + pub Nursery { + name : "nursery" , + rules : [ + ] + } +}