Sha256: d336acdb4f22a56811a6108f34872cec89e0088920c0815c46ae7402a395d43c

Contents?: true

Size: 1 KB

Versions: 8

Compression:

Stored size: 1 KB

Contents

D = Steep::Diagnostic

target :lib do
  signature "sig"
  check "lib"
  ignore "lib/rbs/parser.rb"
  ignore "lib/rbs/prototype", "lib/rbs/test", "lib/rbs/test.rb"

  library "set", "pathname", "json", "logger", "monitor", "tsort", "uri"
  signature "stdlib/strscan/0/"
  signature "stdlib/rubygems/0/"
  signature "stdlib/optparse/0/"

  configure_code_diagnostics do |config|
    config[D::Ruby::MethodDefinitionMissing] = :hint
    config[D::Ruby::ElseOnExhaustiveCase] = :hint
    config[D::Ruby::FallbackAny] = :hint
  end
end

# target :lib do
#   signature "sig"
#
#   check "lib"                       # Directory name
#   check "Gemfile"                   # File name
#   check "app/models/**/*.rb"        # Glob
#   # ignore "lib/templates/*.rb"
#
#   # library "pathname", "set"       # Standard libraries
#   # library "strong_json"           # Gems
# end

# target :spec do
#   signature "sig", "sig-private"
#
#   check "spec"
#
#   # library "pathname", "set"       # Standard libraries
#   # library "rspec"
# end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rbs-1.7.0.beta.5 Steepfile
rbs-1.7.0.beta.4 Steepfile
rbs-1.7.0.beta.3 Steepfile
rbs-1.7.0.beta.2 Steepfile
rbs-1.7.0.beta.1 Steepfile
rbs-1.6.2 Steepfile
rbs-1.6.1 Steepfile
rbs-1.6.0 Steepfile