Skip to content

Commit 7895841

Browse files
authored
docs: fix garmmar and typo error
1 parent 0b28f5f commit 7895841

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

ROME_CHANGELOG.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rome changelog
22

33
Biome is a fork of [Rome Tools](https://github.com/rome/tools).
4-
This CHANGELOG describes all released of Rome Tools.
4+
This CHANGELOG describes all releases of Rome Tools.
55

66
All releases of Biome are described in its own [CHANGELOG](./CHANGELOG.md).
77

@@ -85,14 +85,14 @@ the correct rules to apply [#4502](https://github.com/rome/tools/issues/4502)
8585

8686
#### Other changes
8787

88-
- Refactored the underling argument parsing logic. Changed the look and feel of the help
88+
- Refactored the underlying argument parsing logic. Changed the look and feel of the help
8989
output. [#4405](https://github.com/rome/tools/pull/4405).
9090
- The command `rome check` can accept input from `stdin`.
9191
- Add the argument `--stdin-file-path` to use when running `rome check` via `stdin`.
9292
- Add the argument `--formatter-enabled` to the command `rome check` to control the formatter via CLI.
9393
- Add the argument `--linter-enabled` to the command `rome check` to control the linter via CLI.
9494
- Add the argument `--organize-imports-enabled` to the command `rome check` to control the import sorting via CLI.
95-
- Add new command `rome migrate` the transform the configuration file `rome.json`
95+
- Add a new command `rome migrate` the transform the configuration file `rome.json`
9696
when there are breaking changes.
9797

9898
### Configuration
@@ -108,14 +108,14 @@ output. [#4405](https://github.com/rome/tools/pull/4405).
108108
#### Other changes
109109

110110
- Fix an issue where the VSCode extension duplicates text when using VSCode git utilities [#4338](https://github.com/rome/tools/issues/4338)
111-
- Remove code assists from being added to the code actions when apply fixes;
111+
- Remove code assists from being added to the code actions when applying fixes;
112112
- When requesting code actions, ignored files should not throw errors. Fixes [#4434](https://github.com/rome/tools/issues/4434)
113113

114114
### Formatter
115115

116116
#### Other changes
117117

118-
- Fix an issue where formatting of JSX string literals property values were using incorrect quotes [#4054](https://github.com/rome/tools/issues/4054)
118+
- Fix an issue where formatting of JSX string literals property values was using incorrect quotes [#4054](https://github.com/rome/tools/issues/4054)
119119
- Changed import assertion grammar to the new import attribute assertion
120120
```diff
121121
- import "module" assert {}
@@ -241,9 +241,9 @@ if there are still diagnostics to be addressed.
241241

242242
- `rome check` now checks import statements. This is an experimental feature that needs to be
243243
enabled via configuration. Import can be sorted using `rome check --apply-unsafe`
244-
- Rome is able to auto discover the configuration file. If Rome doesn't fine a configuration in the
244+
- Rome is able to auto discover the configuration file. If Rome doesn't find a configuration in the
245245
working directory, it will try to find one in the parent directories.
246-
- Add a new global options called `--config-path`. It tells Rome to try and discover a `rome.json` file
246+
- Add a new global option called `--config-path`. It tells Rome to try and discover a `rome.json` file
247247
in the given path.
248248
```shell
249249
rome format --config-path=../../other/path/
@@ -509,7 +509,7 @@ Please give them a try by manually enabling them in your configuration and pleas
509509

510510
- The concept of `backend` has been removed, in favor of the concept of `distribution`.
511511
- Removed the possibility to connect to the daemon, for the time being.
512-
- The APIs are asynchronous anymore.
512+
- The APIs are asynchronous now.
513513

514514
#### Other changes
515515

@@ -548,7 +548,7 @@ Please give them a try by manually enabling them in your configuration and pleas
548548
- Added a new argument `--linter-enabled` to the command `rome ci`.
549549
- Added the new `format` option `--trailing-comma` to configure where to add trailing commas.
550550
- Correctly show the supported options for `rome ci`, closes [#3456](https://github.com/rome/tools/issues/3456).
551-
- Fixed the command `rome ci` command to run the linter even if the formatter is disabled, closes [#3495](https://github.com/rome/tools/issues/3495).
551+
- Fixed the `rome ci` command to run the linter even if the formatter is disabled, closes [#3495](https://github.com/rome/tools/issues/3495).
552552
- Fixed the messaging of some diagnostics, [#3460](https://github.com/rome/tools/pull/3460).
553553

554554
### Configuration
@@ -565,7 +565,7 @@ Please give them a try by manually enabling them in your configuration and pleas
565565

566566
- Added the new trailing comma option that configures where to add trailing commas. Supports the values: `all`, `es5` and `none`; refer to the [documentation](https://rome.tools/docs/#javascriptformattertrailingcomma) to learn more.
567567
- Improved JSX formatting [#3499](https://github.com/rome/tools/issues/3499), [#3211](https://github.com/rome/tools/issues/3211), [#3377](https://github.com/rome/tools/issues/3377)
568-
- Better formatting of object destructing
568+
- Better formatting of object destructuring
569569
- Improved formatting of test calls
570570
- Fixed formatting of trailing comments in arrow functions
571571

@@ -829,7 +829,7 @@ configuration file `rome.json` to change the Rome's defaults.
829829

830830
### Formatter
831831

832-
- JSX and TSX are now formatted by default! Make sure to enable Rome as default formatter in the VSCode extension.
832+
- JSX and TSX are now formatted by default! Make sure to enable Rome as the default formatter in the VSCode extension.
833833
- Improved the consistency of formatting of various statements:
834834
- call arguments;
835835
- object property members;
@@ -858,7 +858,7 @@ Fixes a regression introduced in the `rome format` command ([#2670](https://gith
858858
- TypeScript's formatting is better in line with what Prettier does.
859859
- Better formatting of string literals.
860860
Removing unnecessary quotes in string literals and quotes from member names.
861-
Correctly choose the correct quote based on quantity of quotes inside a literal:
861+
Correctly choose the correct quote based on the quantity of quotes inside a literal:
862862
```js
863863
// original code
864864
let a = {
@@ -875,12 +875,12 @@ Correctly choose the correct quote based on quantity of quotes inside a literal:
875875
let c = '"content" \' ';
876876
```
877877
- Better formatting of various statements
878-
- Improved the performance of the formatter an average of 20%-30%! Check the relevant
878+
- Improved the performance of the formatter by an average of 20%-30%! Check the relevant
879879
PRs [1](https://github.com/rome/tools/pull/2456), [2](https://github.com/rome/tools/pull/2638), [3](https://github.com/rome/tools/pull/2612), [4](https://github.com/rome/tools/pull/2462), [5](https://github.com/rome/tools/pull/2634) if you're interested in what the team did.
880880

881881
To reach better compatibility with Prettier, the team had to revise the foundation of our printer,
882882
which caused some regressions around how comments are printed. These are known issues that we
883-
plan to close by next release.
883+
plan to close by the next release.
884884

885885
### Linter
886886

@@ -891,7 +891,7 @@ Refer to the [website](https://rome.tools/#linter) to learn how to start using i
891891

892892
## 0.5.0
893893

894-
- BREAKING CHANGES: the `format` command doesn't write on disk by default. Now the command prints on terminal.
894+
- BREAKING CHANGES: the `format` command doesn't write on disk by default. Now the command prints on the terminal.
895895

896896
**Migration**: add the `--write` argument when calling `rome format`
897897

0 commit comments

Comments
 (0)