Skip to content

Commit

Permalink
Remove rubocop extensions suggestions
Browse files Browse the repository at this point in the history
When we run rubocop, it will raise a tip regaring suggested exentions.
Those extensions are not useful for us, so we disabled the tip.

Result after running rubocop:
```ruby
Tip: Based on detected gems, the following RuboCop extension libraries might be helpful:
  * rubocop-rake (https://rubygems.org/gems/rubocop-rake)
  * rubocop-rspec (https://rubygems.org/gems/rubocop-rspec)

You can opt out of this message by adding the following to your config (see https://docs.rubocop.org/rubocop/extensions.html#extension-suggestions for more options):
  AllCops:
    SuggestExtensions: false
```
  • Loading branch information
MassimilianoLattanzio committed Aug 3, 2023
1 parent 8d6bb9f commit 75c32d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ inherit_from: .rubocop_todo.yml

AllCops:
NewCops: enable
SuggestExtensions: false

Naming/FileName:
Exclude:
Expand Down

0 comments on commit 75c32d5

Please sign in to comment.