Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
standard Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# standard
> The JavaScript Standard Style tool for linting and fixing JavaScript code.
> More information: <https://standardjs.com>.
- Lint all JavaScript source files in the current directory:
`standard`
- Lint specific JavaScript file(s):
`standard {{path/to/file1 path/to/file2 ...}}`
- Apply automatic fixes during linting:
`standard --fix`
- Declare any available global variables:
`standard --global {{variable}}`
- Use a custom ESLint plugin when linting:
`standard --plugin {{plugin}}`
- Use a custom JS parser when linting:
`standard --parser {{parser}}`
- Use a custom ESLint environment when linting:
`standard --env {{environment}}`