Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable Bundler/GemComment version specifier checks #41

Merged
merged 1 commit into from
Mar 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# salsify_rubocop

## 1.0.2
- Disable version specifier checks for the `Bundler/GemComment` cop until https://github.com/rubocop/rubocop/pull/9358
is merged.

## 1.0.1
- Configure file exclusions for `Rails/RakeEnvironment` and `Gemspec/RequiredRubyVersion`

Expand Down
2 changes: 1 addition & 1 deletion conf/rubocop_without_rspec.yml
Expand Up @@ -10,10 +10,10 @@ AllCops:
- 'tmp/**/*'
- 'vendor/**/*'

# Don't check version_specifiers until https://github.com/rubocop/rubocop/pull/9358 merges
Bundler/GemComment:
Enabled: true
OnlyFor:
- 'version_specifiers'
- 'source'
- 'git'
- 'github'
Expand Down
2 changes: 1 addition & 1 deletion lib/salsify_rubocop/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SalsifyRubocop
VERSION = '1.0.1'
VERSION = '1.0.2'
end