mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:33:50 +02:00
rubocop: add page
This commit is contained in:
parent
ddc10f1be0
commit
37284eafc3
1 changed files with 31 additions and 0 deletions
31
pages/osx/rubocop.md
Normal file
31
pages/osx/rubocop.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# rubocop
|
||||
|
||||
> Lint Ruby files.
|
||||
|
||||
- Check all files in the current directory:
|
||||
|
||||
`rubocop`
|
||||
|
||||
- Check specific files or directories:
|
||||
|
||||
`rubocop {{path_1}} {{path_2}}`
|
||||
|
||||
- Write output to file:
|
||||
|
||||
`rubocop --out {{file}}`
|
||||
|
||||
- View list of cops:
|
||||
|
||||
`rubocop --show-cops`
|
||||
|
||||
- Exclude a cop:
|
||||
|
||||
`rubocop --except {{cop_1}} {{cop_2}}`
|
||||
|
||||
- Run only specified cops:
|
||||
|
||||
`rubocop --only {{cop_1}} {{cop_2}}`
|
||||
|
||||
- Auto-correct files (experimental):
|
||||
|
||||
`rubocop --auto-correct`
|
Loading…
Add table
Reference in a new issue