Skip to content

Protos airbnb7 #4

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

Merged
merged 8 commits into from
Apr 17, 2025
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ AllCops:
Exclude:
- bin/yarn
- db/schema.rb
- lib/protobufs/traitify
- lib/protobufs/traitify/**
- lib/protobufs/traitify/**/*

inherit_from:
- ./rubocop-airbnb.yml
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/traitify/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RuboCop
module Traitify
VERSION = "1.2.0"
VERSION = "1.3.0.pre.alpha.1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can probably bump this to 1.3.0 if you've tested it in Dash

end
end
8 changes: 4 additions & 4 deletions rubocop-traitify.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Gem::Specification.new do |spec|
Traitify's Ruby configuration for Rubocop. Heavily influenced by (as well as dependent on)
Airbnb's https://github.com/airbnb/ruby
EOF
spec.authors = ["Tom Prats"]
spec.email = ["[email protected]"]
spec.authors = ["Tom Prats", "Jack Burum"]
spec.email = ["[email protected]", "[email protected]"]
spec.homepage = "https://github.com/traitify/rubocop-traitify"
spec.license = "MIT"
spec.version = RuboCop::Traitify::VERSION
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.5"
spec.required_ruby_version = ">= 2.7"
spec.require_paths = ["lib"]
spec.files = Dir[
"{config,lib}/**/*",
Expand All @@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
"Gemfile"
]

spec.add_dependency("rubocop-airbnb", "~> 6.0.0")
spec.add_dependency("rubocop-airbnb", "~> 8.0.0")
end