Code Monkey home page Code Monkey logo

rubocop-config's Introduction

rubocop-config

Teachable's Rubocop configuration, it's in a public repository so we can easily inherit from these settings.

By default, we enable all the cops and only disable the ones we don't like.

Usage

.rubocop.yml

You inherit from the configurations you need and you can override settings in your own .rubocop.yml file.

Here's a common place to start for a Rails project:

require:
  - rubocop-performance
  - rubocop-rails
  - rubocop-rspec

inherit_from:
  - https://config.teachablecdn.com/rubocop/ruby.yml
  - https://config.teachablecdn.com/rubocop/performance.yml
  - https://config.teachablecdn.com/rubocop/rails.yml
  - https://config.teachablecdn.com/rubocop/rspec.yml

AllCops:
  EnabledByDefault: true
  ExtraDetails: true
  DisplayCopNames: true
  DisplayStyleGuide: true
  TargetRubyVersion: 2.6
  TargetRailsVersion: 5.2

And for non-rails projects:

require:
  - rubocop-performance
  - rubocop-rspec

inherit_from:
  - https://config.teachablecdn.com/rubocop/ruby.yml
  - https://config.teachablecdn.com/rubocop/performance.yml
  - https://config.teachablecdn.com/rubocop/rspec.yml

AllCops:
  EnabledByDefault: true
  ExtraDetails: true
  DisplayCopNames: true
  DisplayStyleGuide: true
  TargetRubyVersion: 2.6

Gemfile

The reason performance.yml is separate is because you need a separate gem for it. Add the rubocop-performance gem to your Gemfile to get it.

group :development, :test do
  gem "rubocop-performance", require: false
  gem "rubocop-rails",       require: false
  gem "rubocop-rspec",       require: false
end

We don't want to require it in normal use, just when running the rubocop command.

And it should go without saying that rubocop-rails should only be added when you are in a Rails project. The same goes for rubocop-rspec.

.gitignore

Also add this to your .gitignore file to not commit the cached configuration files.

.rubocop-*

Testing

To test the config, just run bundle exec rubocop.

rubocop-config's People

Contributors

brunomiranda-hotmart avatar dependabot-preview[bot] avatar iain avatar ludicast avatar mikekitzman avatar pedroguimaraes-hotmart avatar rubybrewsday avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.