1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:46:03 +02:00

update eslint

updated
This commit is contained in:
Michal 2020-04-15 19:28:19 +02:00 committed by Starbeamrainbowlabs
parent dd3a7a90c9
commit 98c964e66f

View file

@ -1,20 +1,20 @@
# eslint
> A pluggable linting utility for JavaScript and JSX.
> More information: <https://eslint.org>.
> Podłączane narzędzie lintowania dla JavaScript i JSX.
> Więcej informacji: <https://eslint.org>.
- Create eslint config:
- Stwórz eslint config:
`eslint --init`
- Lint on a given set of files:
- Lint na danym zestawie plików:
`eslint {{filename}}.js {{filename1}}.js`
- Fix lint issues:
- Napraw lint issues:
`eslint --fix`
- Lint with config:
- Lint z config:
`eslint -c {{path/to/config_file}} {{app/src}}`