taski 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Steepfile DELETED
@@ -1,20 +0,0 @@
1
- # Steepfile
2
-
3
- D = Steep::Diagnostic
4
-
5
- target :lib do
6
- signature "sig"
7
-
8
- check "lib"
9
-
10
- library "monitor", "prism"
11
-
12
- # Configure diagnostics with lenient settings for metaprogramming-heavy code
13
- configure_code_diagnostics do |hash|
14
- hash[D::Ruby::UnannotatedEmptyCollection] = :information
15
- hash[D::Ruby::UnknownInstanceVariable] = :information
16
- hash[D::Ruby::FallbackAny] = :information
17
- hash[D::Ruby::NoMethod] = :warning
18
- hash[D::Ruby::UndeclaredMethodDefinition] = :information
19
- end
20
- end