We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5a060 commit 8be4bc0Copy full SHA for 8be4bc0
.rubocop.yml
@@ -26,7 +26,10 @@ Naming/AccessorMethodName:
26
- 'lib/bashly/concerns/indentation_helper.rb'
27
28
# FIXME: The `Command` class is too long
29
-Metrics/ClassLength: { Exclude: [lib/bashly/script/command.rb] }
+Metrics/ClassLength:
30
+ Exclude:
31
+ - lib/bashly/script/command.rb
32
+ - lib/bashly/config_validator.rb
33
34
# Allow irregular filenames in some cases
35
RSpec/SpecFilePathFormat:
spec/bashly/script/introspection/variables_spec.rb
@@ -1,4 +1,4 @@
1
-describe Script::Introspection::Variables, :focus do
+describe Script::Introspection::Variables do
2
subject do
3
result = Script::Command.new fixtures[fixture]
4
result.parents = result.options['parents']
0 commit comments