From 674daa84eb9f89414b0009a3cd9835ac56c824b1 Mon Sep 17 00:00:00 2001 From: ericgpks Date: Mon, 28 Apr 2025 22:11:31 +0900 Subject: [PATCH] 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. --- Steepfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Steepfile diff --git a/Steepfile b/Steepfile new file mode 100644 index 0000000..edee931 --- /dev/null +++ b/Steepfile @@ -0,0 +1,8 @@ +D = Steep::Diagnostic + +target :lib do + signature "sig" + check "lib" # Directory name to check + + configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting +end