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

[Fix #10084] Add new Lint/RequireRelativeSelfPath cop #10085

Merged

Commits on Sep 15, 2021

  1. [Fix rubocop#10084] Add new Lint/RequireRelativeSelfPath cop

    Fixes rubocop#10084.
    
    This PR adds new `Lint/RequireRelativeSelfPath` cop.
    It checks for uses of `require_relative` with self file path argument.
    
    ```ruby
    # bad
    
    # foo.rb
    require_relative 'foo'
    require_relative 'bar'
    
    # good
    
    # foo.rb
    require_relative 'bar'
    ```
    koic committed Sep 15, 2021
    Configuration menu
    Copy the full SHA
    4216374 View commit details
    Browse the repository at this point in the history