mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-05 22:31:11 +08:00

This file indicates that type definition files are placed in the `sig` directory and the actual implementation files that I want to define types for are located in the `lib` directory. Additionally, it is configured to disable type error checking so as not to raise much errors.
9 lines
177 B
Ruby
9 lines
177 B
Ruby
D = Steep::Diagnostic
|
|
|
|
target :lib do
|
|
signature "sig"
|
|
check "lib" # Directory name to check
|
|
|
|
configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting
|
|
end
|