koraktor/gallerist

View on GitHub

Showing 604 of 604 total issues

Line is too long. [106/80]
Open

    allow(tag_photos).to receive(:where).with(RKKeywordForVersion: { keywordId: [ tag1.id, tag2.id ] }) do
Severity: Minor
Found in spec/gallerist/multi_tag_spec.rb by rubocop

Do not use space inside array brackets.
Open

  s.executables   = [ 'gallerist' ]
Severity: Minor
Found in gallerist.gemspec by rubocop

Checks that brackets used for array literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that array literals have
# surrounding space.

# bad
array = [a, b, c, d]

# good
array = [ a, b, c, d ]

Example: EnforcedStyle: no_space

# The `no_space` style enforces that array literals have
# no surrounding space.

# bad
array = [ a, b, c, d ]

# good
array = [a, b, c, d]

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# array brackets, with the exception that successive left
# or right brackets are collapsed together in nested arrays.

# bad
array = [ a, [ b, c ] ]

# good
array = [ a, [ b, c ]]

Each selector in a comma sequence should be on its own single line
Open

    .metadata, .metadata-button {
Severity: Minor
Found in assets/stylesheets/main.scss by scss-lint

Prefer single quoted strings
Open

      content: "";
Severity: Minor
Found in assets/stylesheets/main.scss by scss-lint
Severity
Category
Status
Source
Language