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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix #3936] Add new Style/MixinGrouping cop #3982

Merged
merged 1 commit into from Jan 30, 2017

Commits on Jan 29, 2017

  1. [Fix rubocop#3936] Add new Style/MixinGrouping cop

    This cop checks for grouping of `mixins` in class and `module` bodies.
    By default, it enforces a separated style, i.e.:
    
    ```
    class Foo
      include Bar
      include Qux
    end
    ```
    
    but it can be configured to enforce a grouped style as well.
    Drenmi committed Jan 29, 2017
    Configuration menu
    Copy the full SHA
    2341191 View commit details
    Browse the repository at this point in the history