mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
406 B
406 B
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/del/file_config}} {{app/src}}