We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81ec22 commit 5c9f111Copy full SHA for 5c9f111
.gitignore
@@ -1,9 +1,10 @@
1
-.prism.log
+*.gem
2
.idea/
3
+.prism.log
4
.ruby-lsp/
5
.yardoc/
-doc/
6
-sorbet/
7
Brewfile.lock.json
8
bin/tapioca
9
-*.gem
+doc/
+sorbet/*
10
+!/sorbet/config
.solargraph.yml
@@ -0,0 +1,9 @@
+---
+max_files: 0
+include:
+ - '*.gemspec'
+ - '/test/openai/test_helper.rb'
+ - 'Rakefile'
+ - 'lib/**/*.rb'
+exclude:
+ - 'rbi/**/*'
Rakefile
@@ -70,7 +70,7 @@ multitask(:steep) do
70
end
71
72
multitask(:sorbet) do
73
- sh(*%w[srb typecheck -- .], chdir: "./rbi")
+ sh(*%w[srb typecheck])
74
75
76
file("sorbet/tapioca") do
sorbet/config
@@ -0,0 +1,2 @@
+--dir=rbi
+--ignore=test/
0 commit comments