-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,5 @@ var/** | |
**/tags | ||
|
||
.git | ||
|
||
/.gem_rbs_collection/** |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
D = Steep::Diagnostic | ||
Check warning on line 1 in Steepfile
|
||
|
||
target :lib do | ||
signature "sig" | ||
Check warning on line 4 in Steepfile
|
||
|
||
check "lib" | ||
Check warning on line 6 in Steepfile
|
||
check "modules" | ||
Check warning on line 7 in Steepfile
|
||
check "Gemfile" | ||
Check warning on line 8 in Steepfile
|
||
# check "app/models/**/*.rb" # Glob | ||
# ignore "lib/templates/*.rb" | ||
|
||
# library "pathname" # Standard libraries | ||
# library "strong_json" # Gems | ||
|
||
# configure_code_diagnostics(D::Ruby.default) # `default` diagnostics setting (applies by default) | ||
configure_code_diagnostics(D::Ruby.strict) # `strict` diagnostics setting | ||
Check warning on line 16 in Steepfile
|
||
# configure_code_diagnostics(D::Ruby.lenient) # `lenient` diagnostics setting | ||
# configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting | ||
# configure_code_diagnostics do |hash| # You can setup everything yourself | ||
# hash[D::Ruby::NoMethod] = :information | ||
# end | ||
end | ||
|
||
# target :test do | ||
# signature "sig", "sig-private" | ||
# | ||
# check "test" | ||
# | ||
# # library "pathname" # Standard libraries | ||
# end |