mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
eslint: add Italian translation.
This commit is contained in:
parent
6aabf8d613
commit
63b07fedea
1 changed files with 20 additions and 0 deletions
20
pages.it/common/eslint.md
Normal file
20
pages.it/common/eslint.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# eslint
|
||||||
|
|
||||||
|
> Utilità di linting per JavaScript e JSX.
|
||||||
|
> Maggiori informazioni: <https://eslint.org>.
|
||||||
|
|
||||||
|
- Crea una configurazione eslint:
|
||||||
|
|
||||||
|
`eslint --init`
|
||||||
|
|
||||||
|
- Esegui il linting di un dato set di file:
|
||||||
|
|
||||||
|
`eslint {{file1.js file2.js}}`
|
||||||
|
|
||||||
|
- Risolvi gli errori di linting:
|
||||||
|
|
||||||
|
`eslint --fix`
|
||||||
|
|
||||||
|
- Esegui il linting utilizzando un determinato file di configurazione:
|
||||||
|
|
||||||
|
`eslint -c {{percorso/a/file_config}} {{app/src}}`
|
Loading…
Add table
Reference in a new issue