Merge pull request #7943 from vidusheeamoli/utils-notability-to-true

sorbet: set utils/notability.rb to true
This commit is contained in:
Issy Long 2020-07-08 19:35:35 +01:00 committed by GitHub
commit d1f6296f0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -454,7 +454,6 @@ false:
- ./utils/fork.rb
- ./utils/formatter.rb
- ./utils/github.rb
- ./utils/notability.rb
- ./utils/popen.rb
- ./utils/user.rb
@ -891,6 +890,7 @@ true:
- ./test/support/helper/fixtures.rb
- ./test/support/lib/config.rb
- ./utils/bottles.rb
- ./utils/notability.rb
- ./utils/git.rb
- ./utils/shell.rb
- ./utils/svn.rb

View File

@ -0,0 +1,15 @@
# typed: strict
module SharedAudits
def github(user, repo)
end
def gitlab(user, repo)
end
def bitbucket(user, repo)
end
def curl_output(*args, secrets: [], **options)
end
end