gonzedge/rambling-trie

View on GitHub
Steepfile

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

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

  check 'lib'
  # check 'tasks'

  # check 'Gemfile'
  # check 'Guardfile'
  # check 'Rakefile'
  # check 'Steepfile'

  # library 'rubyzip'
  library 'yaml'
  library 'securerandom'

  # 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