Pattern: Redundant current directory in path
Issue: -
Checks for uses a redundant current directory in path.
# bad
require_relative './path/to/feature'
# good
require_relative 'path/to/feature'
Pattern: Redundant current directory in path
Issue: -
Checks for uses a redundant current directory in path.
# bad
require_relative './path/to/feature'
# good
require_relative 'path/to/feature'