expertiza/expertiza

View on GitHub
app/helpers/manage_team_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
25%

Use snake_case for variable names.
Open

      urlCreate = url_for controller: 'users', action: 'new'
Severity: Minor
Found in app/helpers/manage_team_helper.rb by rubocop

This cop makes sure that all variables use the configured style, snake_case or camelCase, for their names.

Example: EnforcedStyle: snake_case (default)

# bad
fooBar = 1

# good
foo_bar = 1

Example: EnforcedStyle: camelCase

# bad
foo_bar = 1

# good
fooBar = 1

There are no issues that match your filters.

Category
Status