18F/e-manifest

View on GitHub

Showing 761 of 761 total issues

Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem redcarpet should appear before uglifier.
Open

gem 'redcarpet'
Severity: Minor
Found in Gemfile by rubocop

Gems should be alphabetically sorted within groups.

Example:

# bad
gem 'rubocop'
gem 'rspec'

# good
gem 'rspec'
gem 'rubocop'

# good
gem 'rubocop'

gem 'rspec'

# good only if TreatCommentsAsGroupSeparators is true
# For code quality
gem 'rubocop'
# For tests
gem 'rspec'
Severity
Category
Status
Source
Language