Skip to content

Commit 8be4bc0

Browse files
committed
rubocop
1 parent 3e5a060 commit 8be4bc0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.rubocop.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ Naming/AccessorMethodName:
2626
- 'lib/bashly/concerns/indentation_helper.rb'
2727

2828
# FIXME: The `Command` class is too long
29-
Metrics/ClassLength: { Exclude: [lib/bashly/script/command.rb] }
29+
Metrics/ClassLength:
30+
Exclude:
31+
- lib/bashly/script/command.rb
32+
- lib/bashly/config_validator.rb
3033

3134
# Allow irregular filenames in some cases
3235
RSpec/SpecFilePathFormat:

spec/bashly/script/introspection/variables_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
describe Script::Introspection::Variables, :focus do
1+
describe Script::Introspection::Variables do
22
subject do
33
result = Script::Command.new fixtures[fixture]
44
result.parents = result.options['parents']

0 commit comments

Comments
 (0)