cattr-app/frontend-application

View on GitHub

Showing 4,835 of 4,835 total issues

No space allowed before :
Open

$spacing-04                 : 0.75rem;

Space Before Colon

Rule space-before-colon will enforce whether or not a space should be included before a colon (:).

Options

  • include: true/false (defaults to false)

Examples

When include: false, the following are allowed. When include: true, the following are disallowed:

.foo {
  content: 'bar';
}

When include: true, the following are allowed. When include: false, the following are disallowed:

.foo {
  content :'bar';
}

Prefer single quoted strings
Open

@import "includes/tasks";
Severity: Minor
Found in app/core/sass/app.scss by scss-lint

Domains in URLs are disallowed
Open

@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap&subset=cyrillic');
Severity: Major
Found in app/core/sass/app.scss by sass-lint

No Url Domains

Rule no-url-domains will enforce that domains are not used within urls.

Examples

When enabled, the following are allowed:

.foo {
  background-image: url('/img/bar.png');
}

.foo {
  background-image: url('img/bar.png');
}

.foo {
  background-image: url('bar.png');
}

When enabled, the following are disallowed:

.foo {
  background-image: url('https://foo.com/img/bar.png');
}

.foo {
  background-image: url('http://foo.com/img/bar.png');
}

.foo {
  background-image: url('//foo.com/img/bar.png');
}

Imported partial ./progress.scss should be written as ./progress
Open

@import './progress.scss';

Strings must use single quotes
Open

@import "includes/tasks";
Severity: Major
Found in app/core/sass/app.scss by sass-lint

Quotes

Rule quotes will enforce whether single quotes ('') or double quotes ("") should be used for all strings.

Options

  • style: single/double (defaults to single)

Examples

When style: single, the following are allowed. When style: double, the following are disallowed:

.foo {
  content: 'bar';
}

When style: double, the following are allowed. When style: single, the following are disallowed:

.foo {
  content: "bar";
}

Color #EEEEF5 should be written as #eeeef5
Open

  border: 1px solid #EEEEF5;
Severity: Minor
Found in app/core/sass/includes/core.scss by scss-lint

Prefer single quoted strings
Open

@import "vendor/at-ui/index";
Severity: Minor
Found in app/core/sass/app.scss by scss-lint

Color literals like #888 should only be used in variable declarations; they should be referred to via variable everywhere else.
Open

        color: #888;
Severity: Minor
Found in app/core/sass/includes/tasks.scss by scss-lint

Properties should be ordered font-size, font-weight
Open

    font-weight: 600;

Selector crud__item-view should be written in lowercase with hyphens
Open

.crud__content.crud__item-view {
Severity: Minor
Found in app/core/sass/includes/tasks.scss by scss-lint

Imported partial ./select.scss should be written as ./select
Open

@import './select.scss';

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

h1, h2, h3, h4, h5, h6, h1, .h1, .h2, .h3, .h4, .h5, .h6 {
Severity: Minor
Found in app/core/sass/includes/typo.scss by scss-lint

0.1 should be written without a leading zero as .1
Open

    box-shadow: 0px 0px 10px rgba(63, 51, 86, 0.1);

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

h1, h2, h3, h4, h5, h6, h1, .h1, .h2, .h3, .h4, .h5, .h6 {
Severity: Minor
Found in app/core/sass/includes/typo.scss by scss-lint

Merge rule &__selected with rule on line 11
Open

  &__selected {

border: 0 is preferred over border: none
Open

    border: none;

Properties should be ordered color, font-size, font-weight, margin-bottom
Open

  font-size: 30px;
Severity: Minor
Found in app/core/sass/includes/core.scss by scss-lint

Color #FFFFFF should be written as #FFF
Open

  background: #FFFFFF;
Severity: Minor
Found in app/core/sass/includes/core.scss by scss-lint

Color #FFFFFF should be written as #ffffff
Open

  background: #FFFFFF;
Severity: Minor
Found in app/core/sass/includes/core.scss by scss-lint

Color literals like #FFFFFF should only be used in variable declarations; they should be referred to via variable everywhere else.
Open

    background: #FFFFFF;
Severity: Minor
Found in app/core/sass/includes/core.scss by scss-lint
Severity
Category
Status
Source
Language