module RubyLsp::Requests::Support::Common

def not_in_dependencies?(file_path)

: (String file_path) -> bool?
def not_in_dependencies?(file_path)
  BUNDLE_PATH &&
    !file_path.start_with?(
      BUNDLE_PATH, #: as !nil
    ) &&
    !file_path.start_with?(RbConfig::CONFIG["rubylibdir"])
end