visioncritical/consul_template

View on GitHub
libraries/consul_template_config.rb

Summary

Maintainability
A
0 mins
Test Coverage

Trailing whitespace detected.
Open

            
Severity: Minor
Found in libraries/consul_template_config.rb by rubocop

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

          file "consul_template_main_config" do
Severity: Minor
Found in libraries/consul_template_config.rb by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

          file "consul_template_main_config" do
Severity: Minor
Found in libraries/consul_template_config.rb by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

Trailing whitespace detected.
Open

            
Severity: Minor
Found in libraries/consul_template_config.rb by rubocop

There are no issues that match your filters.

Category
Status