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

Conversation

tagliala
Copy link
Contributor

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:

`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
@sds sds merged commit 6e4630d into sds:main Sep 28, 2024
4 checks passed
@sds
Copy link
Owner

sds commented Sep 28, 2024

Thanks!

@tagliala tagliala deleted the chore/prefer-require-relative branch September 28, 2024 17:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants