mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 22:04:59 +02:00
23 lines
322 B
Markdown
23 lines
322 B
Markdown
# xo
|
|
|
|
> A pluggable zero configuration linting utility for JavaScript.
|
|
|
|
- Lint files in "src":
|
|
|
|
`xo`
|
|
|
|
- Lint on a gives set of files:
|
|
|
|
`xo {{filename}}.js {{filename1}}.js`
|
|
|
|
- Fix lint issues:
|
|
|
|
`xo --fix`
|
|
|
|
- Lint with spaces as indentation instead of tabs:
|
|
|
|
`xo --space`
|
|
|
|
- Lint with prettier code style:
|
|
|
|
`xo --prettier`
|