canvas-lms/gems/rubocop-canvas
Landon Wilkins ead38ae4d8 tiny doc change, fixes CNVS-28032
test plan:
* n/a, doc only change

Change-Id: I470be23a1f3ca12fabd4c033f11adb8497cbfc3e
Reviewed-on: https://gerrit.instructure.com/74489
Reviewed-by: Landon Wilkins <lwilkins@instructure.com>
Product-Review: Landon Wilkins <lwilkins@instructure.com>
QA-Review: Landon Wilkins <lwilkins@instructure.com>
Tested-by: Landon Wilkins <lwilkins@instructure.com>
Reviewed-by: Braden Anderson <braden@instructure.com>
2016-03-15 07:26:38 +00:00
..
config make rlint handle Time.now.utc correctly 2015-04-13 17:00:27 +00:00
lib linter: discourage FileUtils::rm_rf, fixes SD-876 2016-03-10 22:14:28 +00:00
spec enable rubocop for plugins 2016-01-18 18:11:29 +00:00
.gitignore add some ruby linting for jenkins to take advantage of 2015-04-09 14:37:37 +00:00
.rspec add some ruby linting for jenkins to take advantage of 2015-04-09 14:37:37 +00:00
Gemfile add some ruby linting for jenkins to take advantage of 2015-04-09 14:37:37 +00:00
README.md tiny doc change, fixes CNVS-28032 2016-03-15 07:26:38 +00:00
Rakefile add some ruby linting for jenkins to take advantage of 2015-04-09 14:37:37 +00:00
rubocop-canvas.gemspec spec: fix aux build by pinning old rubocop version 2016-01-15 06:09:04 +00:00
test.sh simplify gem test harnesses 2016-01-19 17:52:58 +00:00

README.md

Rubocop::Canvas

This is an extension of the RuboCop gem that provides some extra linters ("cops") that might be handy, and that provides a neat way to do inline commenting in gerrit as a result of linted source.

Usage

At Instructure

You don't really have to do anything if you're at Instructure! The linter runs automatically on the CI server, using the diff-tree from the HEAD commit to decide what files to look at. Then it takes the linted warnings, compares them to the lines you changed (based on chunk headers in "git show"), and posts them as inline gerrit comments via gergich.

No CI Server?

No problem, you can still benefit from rubocop-canvas. In the "script" directory of canvas-lms, there's a little glue code called "rlint", just an executable that does some git-fu to get the right files, and then will print out linting information for your most recent change right to your console. Fix and repeat. :)

Modifying Rubocop::Canvas

You may have several ideas of things you want to do:

Turn off a linter for a given directory

It doesn't make sense to lint database migrations as aggressively as the rest of the source code, for example, so with the config file in "db/migrate/.rubocop.yml" we turn off several linters that we might still want elsewhere

Turn off a given cop everywhere

Are you sure you aren't just frustrated at how much messy code you've written? ;) Ok, ok, you can screw with the config file in the root directory of canvas-lms (".rubocop.yml") there are already examples in there of linters that have been disabled because they're just too much noise.

Add my own cop!

Have you discovered some new thing that we should try to detect automatically from now on? Have a look at "freeze_constants.rb" in this project, you could build something similar for whatever it is you need. Checkout all the callbacks that are available for Cops at https://github.com/bbatsov/rubocop, don't forget to write specs!

Also, don't forget to enable your new cop by default in "config/default.yml"