File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ Metrics/PerceivedComplexity: { Exclude: [lib/bashly/config_validator.rb] }
1919Metrics/MethodLength : { Exclude: [lib/bashly/config_validator.rb] }
2020Style/GuardClause : { Exclude: [lib/bashly/config_validator.rb] }
2121
22+ # FIXME: The `Command` class is too long
23+ Metrics/ClassLength : { Exclude: [lib/bashly/script/command.rb] }
24+
2225# Allow irregular filenames in some cases
2326RSpec/FilePath :
2427 Exclude :
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ def completion_data(command_full_name)
99 comps = allowed || completions
1010 return { } unless comps
1111
12-
1312 aliases . to_h do |name |
1413 prefix = command_full_name
1514 prefix = "#{ prefix } *" unless prefix . end_with? '*'
You can’t perform that action at this time.
0 commit comments