Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/prettier Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# prettier
> An opinionated code formatter for JavaScript, JSON, CSS, YAML, and more.
> More information: <https://prettier.io/>.
- Format a file and print the result to `stdout`:
`prettier {{path/to/file}}`
- Check if a specific file has been formatted:
`prettier --check {{path/to/file}}`
- Run with a specific configuration file:
`prettier --config {{path/to/config_file}} {{path/to/file}}`
- Format a file or directory, replacing the original:
`prettier --write {{path/to/file_or_directory}}`
- Format files or directories recursively using single quotes and no trailing commas:
`prettier --single-quote --trailing-comma {{none}} --write {{path/to/file_or_directory}}`
- Format JavaScript and TypeScript files recursively, replacing the original:
`prettier --write "**/*.{js,jsx,ts,tsx}"`