mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-19 00:01:18 +00:00
Update cheatsheets
This commit is contained in:
25
eslint
Normal file
25
eslint
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# eslint
|
||||
|
||||
> A pluggable linting utility for JavaScript and JSX.
|
||||
> More information: <https://eslint.org>.
|
||||
|
||||
- Create the ESLint configuration file:
|
||||
|
||||
`eslint --init`
|
||||
|
||||
- Lint one or more files:
|
||||
|
||||
`eslint {{path/to/file1.js path/to/file2.js ...}}`
|
||||
|
||||
- Fix lint issues:
|
||||
|
||||
`eslint --fix`
|
||||
|
||||
- Lint using the specified configuration file:
|
||||
|
||||
`eslint -c {{path/to/config_file}} {{path/to/file1.js path/to/file2.js}}`
|
||||
Reference in New Issue
Block a user