jungomi/coach_client

View on GitHub
lib/coach_client/sport.rb

Summary

Maintainability
A
0 mins
Test Coverage

Operator = should be surrounded by a single space.
Open

      sportlist  = []
Severity: Minor
Found in lib/coach_client/sport.rb by rubocop

Checks that operators have space around them, except for ** which should not have surrounding space.

Example:

# bad
total = 3*4
"apple"+"juice"
my_number = 38/4
a ** b

# good
total = 3 * 4
"apple" + "juice"
my_number = 38 / 4
a**b

There are no issues that match your filters.

Category
Status