Sha256: 24698b87beb0d763639db26eee2b004ae494a1a602a976fc9c21ed343345a95e
Contents?: true
Size: 1.02 KB
Versions: 5
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true D = Steep::Diagnostic target :lib do signature "sig" library "net-http" check "lib" # check "Gemfile" # File name # 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 # # 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
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rubysky-0.5.0 | Steepfile |
rubysky-0.4.0 | Steepfile |
rubysky-0.3.0 | Steepfile |
rubysky-0.2.1 | Steepfile |
rubysky-0.2.0 | Steepfile |