From 37284eafc334f8415122b94a74012e8d866726ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henr=C3=A9=20Botha?= Date: Mon, 19 Mar 2018 14:42:38 +0200 Subject: [PATCH] rubocop: add page --- pages/osx/rubocop.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pages/osx/rubocop.md diff --git a/pages/osx/rubocop.md b/pages/osx/rubocop.md new file mode 100644 index 000000000..d35dc7b4f --- /dev/null +++ b/pages/osx/rubocop.md @@ -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`