jjeremydiaz/OpenHouse

View on GitHub

Showing 815 of 815 total issues

Line is too long. [102/80]
Open

  # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
Severity: Minor
Found in config/environments/production.rb by rubocop

Line is too long. [85/80]
Open

  # Settings specified here will take precedence over those in config/application.rb.
Severity: Minor
Found in config/environments/development.rb by rubocop

Rule doesn't have all its properties in alphabetical order.
Open

.intro-message>h2 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Heading (h1) has already been defined.
Open

  .intro-message>h1 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Rule doesn't have all its properties in alphabetical order.
Open

.intro-message>h3 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Heading (h2) has already been defined.
Open

.intro-message>h2 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Heading (h2) should not be qualified.
Open

.intro-message>h2 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Values of 0 shouldn't have units specified.
Open

  margin-bottom: 0px;
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Heading (h2) should not be qualified.
Open

.banner h2 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Rule doesn't have all its properties in alphabetical order.
Open

footer {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Extra blank line detected.
Open


  # Do not fallback to assets pipeline if a precompiled asset is missed.
Severity: Minor
Found in config/environments/production.rb by rubocop

This cops checks for two or more consecutive blank lines.

Example:

# bad - It has two empty lines.
some_method
# one empty line
# two empty lines
some_method

# good
some_method
# one empty line
some_method

Line is too long. [82/80]
Open

  # Asset digests allow you to set far-future HTTP expiration dates on all assets,
Severity: Minor
Found in config/environments/development.rb by rubocop

Heading (h1) should not be qualified.
Open

  .intro-message>h1 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Values of 0 shouldn't have units specified.
Open

    margin: 0 0 0px;
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Rule doesn't have all its properties in alphabetical order.
Open

.section-heading-spacer {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Heading (h2) has already been defined.
Open

.banner h2 {
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Line is too long. [93/80]
Open

# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
Severity: Minor
Found in config/initializers/assets.rb by rubocop

Using width with padding can sometimes make elements larger than you expect.
Open

    padding: 5px;
Severity: Minor
Found in app/assets/stylesheets/homepage.css by csslint

Do not use spaces inside percent literal delimiters.
Open

Rails.application.config.assets.precompile += %w( house.jpg )
Severity: Minor
Found in config/initializers/assets.rb by rubocop

Checks for unnecessary additional spaces inside the delimiters of %i/%w/%x literals.

Example:

# good
%i(foo bar baz)

# bad
%w( foo bar baz )

# bad
%x(  ls -l )

%w-literals should be delimited by [ and ].
Open

Rails.application.config.assets.precompile += %w( user_images/* )
Severity: Minor
Found in config/initializers/assets.rb by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)
Severity
Category
Status
Source
Language