1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pl/common/eslint.md

21 lines
348 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
2020-04-16 00:33:08 +02:00
`eslint {{nazwapliku}}.js {{nazwapliku1}}.js`
2020-04-15 18:07:54 +02:00
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
2020-04-16 00:33:08 +02:00
`eslint -c {{sciezka/do/pliku_config}} {{app/src}}`