Sha256: dd1c657b3ae65ecae489dcb1656305eade30d0b07e7763f77f65c1852d4e3aba
Contents?: true
Size: 1013 Bytes
Versions: 3
Compression:
Stored size: 1013 Bytes
Contents
# frozen_string_literal: true 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 'singleton' # 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
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
solid-result-2.0.0 | Steepfile |
bcdd-result-1.1.0 | Steepfile |
bcdd-result-1.0.0 | Steepfile |