Skip to content

Commit

Permalink
chore: rename rome_suppression to biome_suppression biomejs#88
Browse files Browse the repository at this point in the history
  • Loading branch information
kyu08 committed Sep 8, 2023
1 parent a5b01d1 commit 2f89b06
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ rome_migrate = { path = "./crates/rome_migrate" }
rome_parser = { version = "0.2.0", path = "./crates/rome_parser" }
rome_rowan = { version = "0.2.0", path = "./crates/rome_rowan" }
rome_service = { path = "./crates/rome_service" }
rome_suppression = { version = "0.2.0", path = "./crates/rome_suppression" }
biome_suppression = { version = "0.2.0", path = "./crates/biome_suppression" }
rome_text_size = { version = "0.0.1", path = "./crates/rome_text_size" }
tests_macros = { path = "./crates/tests_macros" }

# Crates needed in the workspace
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
authors = { workspace = true }
description = "Rome suppression utilities"
description = "Biome suppression utilities"
edition = { workspace = true }
license = { workspace = true }
name = "rome_suppression"
name = "biome_suppression"
repository = { workspace = true }
version = "0.2.0"

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/rome_json_formatter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rome_diagnostics = { workspace = true }
rome_formatter = { workspace = true }
rome_json_syntax = { workspace = true }
rome_rowan = { workspace = true }
rome_suppression = { workspace = true }
biome_suppression = { workspace = true }

[dev-dependencies]
countme = { workspace = true, features = ["enable"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_json_formatter/src/comments.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use crate::prelude::*;
use biome_suppression::parse_suppression_comment;
use rome_diagnostics::category;
use rome_formatter::comments::{
is_doc_comment, CommentKind, CommentStyle, Comments, SourceComment,
Expand All @@ -7,7 +8,6 @@ use rome_formatter::formatter::Formatter;
use rome_formatter::{write, FormatResult, FormatRule};
use rome_json_syntax::{JsonLanguage, TextLen};
use rome_rowan::SyntaxTriviaPieceComments;
use rome_suppression::parse_suppression_comment;

pub type JsonComments = Comments<JsonLanguage>;

Expand Down

0 comments on commit 2f89b06

Please sign in to comment.