-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSteepfile
More file actions
27 lines (23 loc) · 794 Bytes
/
Copy pathSteepfile
File metadata and controls
27 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# D = Steep::Diagnostic
#
target :lib do
signature "sig"
check "lib" # Directory name
collection_config "rbs_collection.yaml"
# check "Gemfile" # File name
# ignore "lib/templates/*.rb"
# library "pathname", "set" # Standard libraries
# 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"
#
# # library "pathname", "set" # Standard libraries
# end