A custom rubocop extension and default config for AL ruby projects.
Add the gem to the development dependencies:
group :development do
gem 'rubocop-angellist', github: 'angellist/rubocop-angellist'
end
and then inherit the default config in the project's .rubocop.yml
:
inherit_gem:
rubocop-angellist: rubocop.yml
# ... rest of config
- Add your rule configuration to the
rubocop.yml
file in top level of this repo - Commit the changes through PR
- Run
bundle update rubocop-angellist
in your project to pull the latest changes.
Follow the directions here.
New custom cops will be automatically included and configured with the defaults.