Sha256: 12fcbda6f4491f9982355b41637a5eb7dfd6ba0b6d97348383fdfe15c6ff6583

Contents?: true

Size: 744 Bytes

Versions: 1

Compression:

Stored size: 744 Bytes

Contents

# D = Steep::Diagnostic
#
target :lib do
  signature "sig"

  check "lib"                       # Directory name
  # check "Gemfile"                   # File name
  # check "app/models/**/*.rb"        # Glob
  # ignore "lib/templates/*.rb"

  library "json", "uri", "pathname", "securerandom", "logger"

  # library "strong_json"           # Gems
  
  # configure_code_diagnostics(D::Ruby.strict)       # `strict` diagnostics setting
  # configure_code_diagnostics(D::Ruby.lenient)      # `lenient` 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"
# end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pbmenv-0.1.13 Steepfile