This adds a `.jshintrc` to the `linters/` directory. I just copied over
the settings from the `SublimeLinter` file, de-nesting the JSON object
by one level.
It means we'll have to maintain both files, but it's good to have a
basic `.jshintrc` for those of us that aren't using JSHint through
Sublime Text.
The Airbnb guide states: "Strings longer than 80 characters should be written across multiple lines using string concatenation."
I propose to add the maxlen option to enforce this rule: http://www.jshint.com/docs/options/#maxlen
However maxlen enforces the entire source code, not just a line of String. I would like to hear your thoughts on whether that is a beneficial enforcement to keep JS code at a set width.