Steepfile 949 B

12345678910111213141516171819202122232425262728
  1. # D = Steep::Diagnostic
  2. #
  3. target :lib do
  4. signature "sig"
  5. check "lib"
  6. # check "Gemfile" # File name
  7. # check "app/models/**/*.rb" # Glob
  8. # ignore "lib/templates/*.rb"
  9. #
  10. # library "pathname" # Standard libraries
  11. # library "strong_json" # Gems
  12. #
  13. # configure_code_diagnostics(D::Ruby.default) # `default` diagnostics setting (applies by default)
  14. # configure_code_diagnostics(D::Ruby.strict) # `strict` diagnostics setting
  15. # configure_code_diagnostics(D::Ruby.lenient) # `lenient` diagnostics setting
  16. # configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting
  17. # configure_code_diagnostics do |hash| # You can setup everything yourself
  18. # hash[D::Ruby::NoMethod] = :information
  19. # end
  20. end
  21. # target :test do
  22. # signature "sig", "sig-private"
  23. #
  24. # check "test"
  25. #
  26. # # library "pathname" # Standard libraries
  27. # end