AgileVentures/LocalSupport

View on GitHub

Showing 792 of 792 total issues

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:hover
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:hover,

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default.active
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default.active,

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default[disabled]
Open

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default[disabled] {

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

.bootstrap-switch input[type='radio'],

Don't use IDs in selectors.
Open

#toolbar.affix {

Redundant curly braces around a hash parameter.
Open

    new({
      name: 'Title',
      address: 'Contact Address',
      description: 'Activities',
      website: 'website',
Severity: Minor
Found in app/models/csv_header.rb by rubocop

This cop checks for braces around the last parameter in a method call if the last parameter is a hash. It supports braces, no_braces and context_dependent styles.

Example: EnforcedStyle: braces

# The `braces` style enforces braces around all method
# parameters that are hashes.

# bad
some_method(x, y, a: 1, b: 2)

# good
some_method(x, y, {a: 1, b: 2})

Example: EnforcedStyle: no_braces (default)

# The `no_braces` style checks that the last parameter doesn't
# have braces around it.

# bad
some_method(x, y, {a: 1, b: 2})

# good
some_method(x, y, a: 1, b: 2)

Example: EnforcedStyle: context_dependent

# The `context_dependent` style checks that the last parameter
# doesn't have braces around it, but requires braces if the
# second to last parameter is also a hash literal.

# bad
some_method(x, y, {a: 1, b: 2})
some_method(x, y, {a: 1, b: 2}, a: 1, b: 2)

# good
some_method(x, y, a: 1, b: 2)
some_method(x, y, {a: 1, b: 2}, {a: 1, b: 2})

Line is too long. [100/90] (https://github.com/bbatsov/ruby-style-guide#80-character-limits)
Open

    # superadmin false, pending_organisation  pending_organisation!=organisation org != organisation
Severity: Minor
Found in app/models/user.rb by rubocop

Align the operands of a condition in an if statement spanning multiple lines.
Open

        (@sym == :who_they_help && other.sym == :how_they_help)
Severity: Minor
Found in app/models/category.rb by rubocop

This cop checks the indentation of the right hand side operand in binary operations that span more than one line.

Example:

# bad
if a +
b
  something
end

# good
if a +
   b
  something
end

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger:active
Open

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger:active,

Property with star prefix found.
Open

  *background-color: #ec4844;

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:active
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:active,

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:active
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default:active,

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default.active
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default.active,

Adjoining classes: a.btn.pull-right
Open

a.btn.pull-right {

Line contains a trailing semicolon
Open

    menu = $('#menuLogin');

Line is too long. [93/90] (https://github.com/bbatsov/ruby-style-guide#80-character-limits)
Open

  validates_url :website, preferred_scheme: 'http://', message: 'Website is not a valid URL',
Severity: Minor
Found in app/models/base_organisation.rb by rubocop

Line is too long. [97/90] (https://github.com/bbatsov/ruby-style-guide#80-character-limits)
Open

  # should we have a before_save here where we check if the pending_organization_id is going from
Severity: Minor
Found in app/models/user.rb by rubocop

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger.disabled
Open

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger.disabled,

Adjoining classes: .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger.disabled
Open

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger.disabled,

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

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
Severity
Category
Status
Source
Language