Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename some crates #251

Merged
merged 4 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ contributors = "run -p xtask_contributors --"
coverage = "run -p xtask_coverage --profile=release-with-debug --"
documentation = """
doc \
-p rome_*formatter \
-p biome_*formatter \
-p biome_control_flow \
-p biome_analyze \
-p biome_*analyze \
-p biome_*_syntax \
-p biome_*_factory \
-p biome_diagnostics \
-p rome_service \
-p biome_service \
-p biome_cli \
-p biome_console \
-p biome_*parser \
Expand Down
16 changes: 6 additions & 10 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,16 @@ crates/biome_js_analyze/src/analyzers/*.rs linguist-generated=true text=auto eol
crates/biome_js_analyze/src/assists/*.rs linguist-generated=true text=auto eol=lf
crates/biome_js_analyze/src/semantic_analyzers/*.rs linguist-generated=true text=auto eol=lf
crates/biome_js_analyze/src/registry.rs linguist-generated=true text=auto eol=lf
crates/rome_service/src/configuration/linter/rules.rs linguist-generated=true text=auto eol=lf
crates/biome_service/src/configuration/linter/rules.rs linguist-generated=true text=auto eol=lf
packages/@biomejs/backend-jsonrpc/src/workspace.ts linguist-generated=true text=auto eol=lf
website/src/pages/lint/rules/**/*.md linguist-generated=true text=auto eol=lf
website/src/components/generated/.astro linguist-generated=true text=auto eol=lf
packages/@biomejs/biome/configuration_schema.json linguist-generated=true text=auto eol=lf
editors/vscode/configuration_schema.json linguist-generated=true text=auto eol=lf
crates/rome_service/src/configuration/parse/json/rules.rs linguist-generated=true text=auto eol=lf


crates/rome_js_formatter/tests/**/*.ts.prettier-snap linguist-language=TypeScript
crates/rome_js_formatter/tests/**/*.js.prettier-snap linguist-language=JavaScript
crates/rome_js_formatter/tests/**/*.ts.snap linguist-language=Markdown
crates/rome_js_formatter/tests/**/*.js.snap linguist-language=Markdown
crates/biome_service/src/configuration/parse/json/rules.rs linguist-generated=true text=auto eol=lf
crates/biome_js_formatter/tests/**/*.ts.prettier-snap linguist-language=TypeScript
crates/biome_js_formatter/tests/**/*.js.prettier-snap linguist-language=JavaScript
crates/biome_js_formatter/tests/**/*.ts.snap linguist-language=Markdown
crates/biome_js_formatter/tests/**/*.js.snap linguist-language=Markdown
crates/biome_cli/tests/**/*.snap linguist-language=Markdown
crates/biome_js_analyze/tests/specs/**/*.snap linguist-language=Markdown


16 changes: 8 additions & 8 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A-Cli:
- crates/biome_console/**

A-Core:
- crates/rome_deserializer/**
- crates/biome_deserializer/**
- crates/biome_fs/**
- crates/biome_rowan/**
- crates/biome_text_edit/**
Expand All @@ -15,7 +15,7 @@ A-Core:
- crates/biome_markup/**

A-Project:
- crates/rome_service/**
- crates/biome_service/**

A-Linter:
- crates/biome_analyze/**
Expand All @@ -24,7 +24,7 @@ A-Linter:

A-Parser:
- crates/biome_parser/**
- crates/rome_js_parser/**
- crates/biome_js_parser/**
- crates/biome_js_syntax/**
- crates/biome_json_parser/**
- crates/biome_json_syntax/**
Expand All @@ -34,9 +34,9 @@ A-Parser:
A-Formatter:
- crates/biome_formatter/**
- crates/biome_formatter_test/**
- crates/rome_js_formatter/**
- crates/biome_js_formatter/**
- crates/biome_json_formatter/**
- crates/rome_css_formatter/**
- crates/biome_css_formatter/**

A-Editors:
- crates/editors/**
Expand All @@ -59,10 +59,10 @@ A-Changelog:
- CHANGELOG.md

L-Javascript:
- crates/rome_js_*/**
- crates/biome_js_*/**

L-Json:
- crates/rome_json_*/**
- crates/biome_json_*/**

L-CSS:
- crates/rome_css_*/**
- crates/biome_css_*/**
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ packages/@biomejs/cli-*
# https://github.com/nnethercote/dhat-rs output file
dhat-heap.json

crates/rome_js_formatter/report.*
crates/biome_js_formatter/report.*
crates/biome_json_formatter/report.*
.vercel
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ documentation page](https://rustdocs.rome.tools/biome_js_parser/index.html)
### Formatter

To know the technical details of how our formatter works and how to write test, please check our [internal
documentation page](https://rustdocs.rome.tools/rome_js_formatter/index.html)
documentation page](https://rustdocs.rome.tools/biome_js_formatter/index.html)

### Versioning

Expand Down
Loading