Skip to content

Commit

Permalink
chore: rename rome_flags to biome_flags biomejs#88
Browse files Browse the repository at this point in the history
  • Loading branch information
kyu08 committed Sep 7, 2023
1 parent a947fc9 commit 39a32be
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ inherits = "release"
biome_lsp = { path = "./crates/biome_lsp" }
biome_markup = { version = "0.0.1", path = "./crates/biome_markup" }
biome_test_utils = { path = "./crates/biome_test_utils" }
biome_flags = { path = "./crates/biome_flags" }
rome_analyze = { path = "./crates/rome_analyze" }
rome_aria = { path = "./crates/rome_aria" }
rome_aria_metadata = { path = "./crates/rome_aria_metadata" }
Expand All @@ -41,7 +42,6 @@ rome_deserialize = { version = "0.2.0", path = "./crates/rome_deseria
rome_diagnostics = { version = "0.2.0", path = "./crates/rome_diagnostics" }
rome_diagnostics_categories = { version = "0.2.0", path = "./crates/rome_diagnostics_categories" }
rome_diagnostics_macros = { version = "0.0.1", path = "./crates/rome_diagnostics_macros" }
rome_flags = { path = "./crates/rome_flags" }
rome_formatter = { version = "0.1.0", path = "./crates/rome_formatter" }
rome_formatter_test = { path = "./crates/rome_formatter_test" }
rome_fs = { path = "./crates/rome_fs" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors.workspace = true
edition.workspace = true
license.workspace = true
name = "rome_flags"
name = "biome_flags"
repository.workspace = true
version = "0.0.0"

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/rome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.52"
biome_lsp = { workspace = true }
biome_flags = { workspace = true }
bpaf = { workspace = true }
crossbeam = "0.8.1"
dashmap = { workspace = true }
Expand All @@ -24,7 +25,6 @@ rayon = "1.5.1"
rome_console = { workspace = true }
rome_deserialize = { workspace = true }
rome_diagnostics = { workspace = true }
rome_flags = { workspace = true }
rome_formatter = { workspace = true }
rome_fs = { workspace = true }
rome_json_formatter = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ version = "0.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
biome_flags = { workspace = true }
bpaf = { workspace = true }
dashmap = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
rome_analyze = { workspace = true, features = ["serde"] }
rome_console = { workspace = true }
rome_deserialize = { workspace = true }
rome_diagnostics = { workspace = true }
rome_flags = { workspace = true }
rome_formatter = { workspace = true, features = ["serde"] }
rome_fs = { workspace = true, features = ["serde"] }
rome_js_analyze = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion 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.

2 changes: 1 addition & 1 deletion xtask/codegen/src/generate_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub(crate) fn generate_rules_configuration(mode: Mode) -> Result<()> {
});

let global_recommended = if group == "nursery" {
quote! { self.is_recommended() && rome_flags::is_unstable() }
quote! { self.is_recommended() && biome_flags::is_unstable() }
} else {
quote! { self.is_recommended() }
};
Expand Down

0 comments on commit 39a32be

Please sign in to comment.