Skip to content

Commit 674daa8

Browse files
committed
feat: add Steepfile with the minimum configuration
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.
1 parent 3e2ab12 commit 674daa8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Steepfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
D = Steep::Diagnostic
2+
3+
target :lib do
4+
signature "sig"
5+
check "lib" # Directory name to check
6+
7+
configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting
8+
end

0 commit comments

Comments
 (0)