DEV: Prefer \A and \z over ^ and $ in regexes (#19936)

This commit is contained in:
Daniel Waterworth
2023-01-20 12:52:49 -06:00
committed by GitHub
parent f7907a3645
commit 666536cbd1
115 changed files with 294 additions and 291 deletions

View File

@ -14,7 +14,7 @@ module RequireDependencyBackwardCompatibility
def require_dependency(filename)
name = filename.to_s
return if name == "jobs/base"
return super(name.sub(%r{^lib/}, "")) if name.start_with?("lib/")
return super(name.sub(%r{\Alib/}, "")) if name.start_with?("lib/")
super
end