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 #186

Merged
merged 1 commit into from
Sep 28, 2024

Commits on Sep 28, 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.
    
    Retain `require` for dynamic paths in `lib/slim_lint.rb` because they
    use absolute paths.
    
    Refs:
    - rubocop/rubocop#8748
    - sds/haml-lint#521
    tagliala committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    0b63e76 View commit details
    Browse the repository at this point in the history