fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/requests/dns/get_records_from_record_set.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
46%

%w-literals should be delimited by [ and ].
Open

          %w(1.2.3.4 1.2.3.5 1.2.3.6)

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

There are no issues that match your filters.

Category
Status