1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-12 18:15:42 +02:00
tldr/pages.pl/common/eslint.md

21 lines
340 B
Markdown
Raw Normal View History

2020-04-15 18:07:54 +02:00
# eslint
2020-04-15 19:28:19 +02:00
> Podłączane narzędzie lintowania dla JavaScript i JSX.
> Więcej informacji: <https://eslint.org>.
2020-04-15 18:07:54 +02:00
2020-04-15 19:28:19 +02:00
- Stwórz eslint config:
2020-04-15 18:07:54 +02:00
`eslint --init`
2020-04-15 19:28:19 +02:00
- Lint na danym zestawie plików:
2020-04-15 18:07:54 +02:00
`eslint {{filename}}.js {{filename1}}.js`
2020-04-15 19:28:19 +02:00
- Napraw lint issues:
2020-04-15 18:07:54 +02:00
`eslint --fix`
2020-04-15 19:28:19 +02:00
- Lint z config:
2020-04-15 18:07:54 +02:00
`eslint -c {{path/to/config_file}} {{app/src}}`