sorbet: set utils/notability.rb to true

This commit is contained in:
vidusheeamoli 2020-07-08 23:38:42 +05:30
parent eee17fd1b5
commit 79ac3875d5
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