initial commit
This commit is contained in:
commit
5779c37f5b
19 changed files with 421 additions and 0 deletions
28
Steepfile
Normal file
28
Steepfile
Normal file
|
@ -0,0 +1,28 @@
|
|||
D = Steep::Diagnostic
|
||||
|
||||
target :lib do
|
||||
signature "sig"
|
||||
|
||||
check "lib" # Directory name
|
||||
# ignore "lib/templates/*.rb"
|
||||
|
||||
# library "pathname" # Standard libraries
|
||||
# library "strong_json" # Gems
|
||||
# library "phlex"
|
||||
|
||||
# configure_code_diagnostics(D::Ruby.default) # `default` diagnostics setting (applies by default)
|
||||
# configure_code_diagnostics(D::Ruby.strict) # `strict` diagnostics setting
|
||||
# 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
|
Loading…
Add table
Add a link
Reference in a new issue