Skip to content

Commit

Permalink
fix incorrect derive
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Oct 23, 2024
1 parent 1a4bdac commit 4eaaece
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/biome_analyze/src/categories.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ impl ActionCategory {
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde::Serialize, serde::Deserialize, schemars::JsonSchema)
derive(serde::Serialize, serde::Deserialize, schemars::JsonSchema),
serde(rename_all = "camelCase")
)]
#[serde(rename_all = "camelCase")]
pub enum RefactorKind {
/// This action describes a refactor with no particular sub-category
None,
Expand Down Expand Up @@ -183,9 +183,9 @@ pub enum RefactorKind {
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde::Serialize, serde::Deserialize, schemars::JsonSchema)
derive(serde::Serialize, serde::Deserialize, schemars::JsonSchema),
serde(rename_all = "camelCase")
)]
#[serde(rename_all = "camelCase")]
pub enum SourceActionKind {
/// This action describes a source action with no particular sub-category
None,
Expand Down

0 comments on commit 4eaaece

Please sign in to comment.