-
Notifications
You must be signed in to change notification settings - Fork 280
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
Inherit reek config from a gem #1430
Comments
The bad news: Unfortunately, this is not possible at the moment. Neither does Reek offer the option to use more than one configuration file nor does it allow you to specify a configuration file inside a gem. The good news: We are working on it! ;)
This is certainly one of the next features that we are going to tackle (we started to work on this in #1426 already). This
certainly sounds like a nice follow-up. I have no ETA for both features though, so it might make sense for you to subscribe to the mentioned issue and pull request above. |
Rubocop has an inheritance system to share rubocop config with a gem. See: https://blog.percy.io/share-rubocop-rules-across-all-of-your-repos-f3281fbd71f8 Reek does not have identical system. We are waiting for: troessner/reek#1430 Code Climate can use config from a gem: https://codeclimate.com/changelog/582495c32c33066f1b00191d/
Rubocop has an inheritance system to share rubocop config with a gem. See: https://blog.percy.io/share-rubocop-rules-across-all-of-your-repos-f3281fbd71f8 Reek does not have identical system. We are waiting for: troessner/reek#1430 Code Climate can use config from a gem: https://codeclimate.com/changelog/582495c32c33066f1b00191d/
Rubocop has an inheritance system to share rubocop config with a gem. See: https://blog.percy.io/share-rubocop-rules-across-all-of-your-repos-f3281fbd71f8 Reek does not have identical system. We are waiting for: troessner/reek#1430 Code Climate can use config from a gem: https://codeclimate.com/changelog/582495c32c33066f1b00191d/
Rubocop has an inheritance system to share rubocop config with a gem. See: https://blog.percy.io/share-rubocop-rules-across-all-of-your-repos-f3281fbd71f8 Reek does not have identical system. We are waiting for: troessner/reek#1430 Code Climate can use config from a gem: https://codeclimate.com/changelog/582495c32c33066f1b00191d/
In my company, we have several projects that use Code Climate metrics with rubocop, reek...
I'am creating a gem to share an up to date configuration with every projects.
Rubocop has a way to use the config file store into a gem : https://github.com/rubocop-hq/rubocop/blob/master/manual/configuration.md#inheriting-configuration-from-a-dependency-gem
Reek does not seem to have the same possibility. The use of a config file in the
home/
directory is not enough because it won't be kept up to date and won't work with Code Climate.What do you think about this feature? Thank you for your help.
The text was updated successfully, but these errors were encountered: