mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
csslint: add Italian translation.
This commit is contained in:
parent
0d300866c1
commit
2620f67f7e
1 changed files with 27 additions and 0 deletions
27
pages.it/common/csslint.md
Normal file
27
pages.it/common/csslint.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# csslint
|
||||
|
||||
> Un linter per codice CSS.
|
||||
|
||||
- Esegui il linting di un singolo file CSS:
|
||||
|
||||
`csslint {{file.css}}`
|
||||
|
||||
- Esegui il linting di file CSS multipli:
|
||||
|
||||
`csslint {{file1.css}} {{file2.css}} {{file3.css}}`
|
||||
|
||||
- Elenca tutte le possibili regole di stile:
|
||||
|
||||
`csslint --list-rules`
|
||||
|
||||
- Specifica certe regole come errori (che risulteranno in un codice d'uscita diverso da zero):
|
||||
|
||||
`csslint --errors={{errors,universal-selector,imports}} {{file.css}}`
|
||||
|
||||
- Specifica certe regole come warning:
|
||||
|
||||
`csslint --warnings={{box-sizing,selector-max,floats}} {{file.css}}`
|
||||
|
||||
- Specifica certe regole da essere completamente ignorate:
|
||||
|
||||
`csslint --ignore={{ids,rules-count,shorthand}} {{file.css}}`
|
Loading…
Add table
Reference in a new issue