Skip to content

Commit

Permalink
fix: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Oct 12, 2023
1 parent f721432 commit b39c6c9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ Available options:
--formatter-enabled=<true|false> Allow to enable or disable the formatter check.
--linter-enabled=<true|false> Allow to enable or disable the linter check.
--organize-imports-enabled=<true|false> Allow to enable or disable the organize imports.
--stdin-file-path=PATH A file name with its extension to pass when reading from standard in,
e.g. echo 'let a;' | biome check --stdin-file-path=file.js"
--stdin-file-path=PATH Use this option when you want to format code piped from `stdin`, and
print the output to `stdout`.
The file doesn't need to exist on disk, what matters is the extension of
the file. Based on the extension, Biome will use the appropriate tool.
the file. Based on the extension, Biome knows how to check the code.
Example: `echo 'let a;' | biome check --stdin-file-path=file.js`
-h, --help Prints help information
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ Available options:
languages) files. Default to 2.
--json-formatter-line-width=NUMBER What's the max width of a line, applied to JSON (and its
super languages) files. Defaults to 80.
--stdin-file-path=PATH A file name with its extension to pass when reading from standard in,
e.g. echo 'let a;' | biome format --stdin-file-path=file.js".
--stdin-file-path=PATH Use this option when you want to format code piped from `stdin`, and
print the output to `stdout`.
The file doesn't need to exist on disk, what matters is the extension of
the file. Based on the extension, Biome will use the appropriate tool.
the file. Based on the extension, Biome knows how to format the code.
Example: `echo 'let a;' | biome format --stdin-file-path=file.js`
--write Writes formatted files to file system.
-h, --help Prints help information
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ Available positional items:
Available options:
--apply Apply safe fixes, formatting
--apply-unsafe Apply safe fixes and unsafe fixes, formatting and import sorting
--stdin-file-path=PATH A file name with its extension to pass when reading from standard in,
e.g. echo 'let a;' | biome lint --stdin-file-path=file.js"
--stdin-file-path=PATH Use this option when you want to format code piped from `stdin`, and
print the output to `stdout`.
The file doesn't need to exist on disk, what matters is the extension of
the file. Based on the extension, Biome will use the appropriate tool.
the file. Based on the extension, Biome knows how to lint the code.
Example: `echo 'let a;' | biome lint --stdin-file-path=file.js`
-h, --help Prints help information
```
Expand Down

0 comments on commit b39c6c9

Please sign in to comment.