cloudamatic/mu

View on GitHub
cookbooks/mu-master/recipes/firewall-holes.rb

Summary

Maintainability
A
0 mins
Test Coverage

Use normalcase for variable numbers.
Open

local_chef_ports_2 = [5672, 9999, 15672, 25672, 81, 111, 4369, 9463]

This cop makes sure that all numbered variables use the configured style, snakecase, normalcase or noninteger, for their numbering.

Example: EnforcedStyle: snake_case

# bad

variable1 = 1

# good

variable_1 = 1

Example: EnforcedStyle: normalcase (default)

# bad

variable_1 = 1

# good

variable1 = 1

Example: EnforcedStyle: non_integer

# bad

variable1 = 1

variable_1 = 1

# good

variableone = 1

variable_one = 1

The name of this source file (firewall-holes.rb) should use snake_case.
Open

#

This cop makes sure that Ruby source files have snake_case names. Ruby scripts (i.e. source files with a shebang in the first line) are ignored.

Example:

# bad
lib/layoutManager.rb

anything/usingCamelCase

# good
lib/layout_manager.rb

anything/using_snake_case.rake

There are no issues that match your filters.

Category
Status