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

Prefer require_relative for internal requires #350

Merged

Commits on Sep 25, 2024

  1. Prefer require_relative for internal requires

    `require_relative` is preferred over `require` for files within the same
    project because it uses paths relative to the current file, making code
    more portable and less dependent on the load path.
    
    This change updates internal requires to use `require_relative` for
    consistency, performance, and improved portability.
    
    Ref:
    - ruby/psych#522
    - ruby/logger#20
    - ruby/rdoc#658
    - panorama-ed#349
    - rubocop/rubocop#8748
    tagliala committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    c8c11f6 View commit details
    Browse the repository at this point in the history