scottohara/loot

View on GitHub

Showing 298 of 298 total issues

Ordered list item prefix
Open

8. Start the database server and app server in dev mode (`npm start`)
Severity: Info
Found in README.md by markdownlint

MD029 - Ordered list item prefix

Tags: ol

Aliases: ol-prefix

Parameters: style ("one", "ordered"; default "one")

This rule is triggered on ordered lists that do not either start with '1.' or do not have a prefix that increases in numerical order (depending on the configured style, which defaults to 'one').

Example valid list if the style is configured as 'one':

1. Do this.
1. Do that.
1. Done.

Example valid list if the style is configured as 'ordered':

1. Do this.
2. Do that.
3. Done.

Ordered list item prefix
Open

5. File -> Export DB -> To CSV
Severity: Info
Found in README.md by markdownlint

MD029 - Ordered list item prefix

Tags: ol

Aliases: ol-prefix

Parameters: style ("one", "ordered"; default "one")

This rule is triggered on ordered lists that do not either start with '1.' or do not have a prefix that increases in numerical order (depending on the configured style, which defaults to 'one').

Example valid list if the style is configured as 'one':

1. Do this.
1. Do that.
1. Done.

Example valid list if the style is configured as 'ordered':

1. Do this.
2. Do that.
3. Done.

Ordered list item prefix
Open

7. Run the importer (`rake db:seed`)
Severity: Info
Found in README.md by markdownlint

MD029 - Ordered list item prefix

Tags: ol

Aliases: ol-prefix

Parameters: style ("one", "ordered"; default "one")

This rule is triggered on ordered lists that do not either start with '1.' or do not have a prefix that increases in numerical order (depending on the configured style, which defaults to 'one').

Example valid list if the style is configured as 'one':

1. Do this.
1. Do that.
1. Done.

Example valid list if the style is configured as 'ordered':

1. Do this.
2. Do that.
3. Done.

Unexpected token '&' at line 39, col 3.
Open

        &.account {
Severity: Minor
Found in src/transactions/css/index.css by csslint

Unknown property 'tr'.
Open

                tr:last-child td {
Severity: Minor
Found in src/transactions/css/index.css by csslint

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

        &.amount {
Severity: Minor
Found in src/transactions/css/index.css by csslint

Expected (<color>) but found 'var(--state-warning-text)'.</color>
Open

        color: var(--state-warning-text);
Severity: Minor
Found in src/transactions/css/status.css by csslint

Use of !important
Open

        left: 0 !important;

Unexpected token '}' at line 15, col 2.
Open

    }
Severity: Minor
Found in src/categories/css/index.css by csslint

Line length
Open

3. Install the client-side dev dependencies (`npm install`) (Note: you should have `./node_modules/.bin` in your shell path; so that locally installed packages are preferred over globally installed ones)
Severity: Info
Found in README.md by markdownlint

MD013 - Line length

Tags: line_length

Aliases: line-length Parameters: linelength, codeblocks, tables (number; default 80, boolean; default true)

This rule is triggered when there are lines that are longer than the configured line length (default: 80 characters). To fix this, split the line up into multiple lines.

This rule has an exception where there is no whitespace beyond the configured line length. This allows you to still include items such as long URLs without being forced to break them in the middle.

You also have the option to exclude this rule for code blocks and tables. To do this, set the code_blocks and/or tables parameters to false.

Code blocks are included in this rule by default since it is often a requirement for document readability, and tentatively compatible with code rules. Still, some languages do not lend themselves to short lines.

Ordered list item prefix
Open

2. Install the server-side dependencies (`bundle config --local path vendor/bundle && bundle install`) (`path vendor/bundle` ensures that gems are installed locally in the project)
Severity: Info
Found in README.md by markdownlint

MD029 - Ordered list item prefix

Tags: ol

Aliases: ol-prefix

Parameters: style ("one", "ordered"; default "one")

This rule is triggered on ordered lists that do not either start with '1.' or do not have a prefix that increases in numerical order (depending on the configured style, which defaults to 'one').

Example valid list if the style is configured as 'one':

1. Do this.
1. Do that.
1. Done.

Example valid list if the style is configured as 'ordered':

1. Do this.
2. Do that.
3. Done.

Ordered list item prefix
Open

2. Run the RSpec rake task (`bundle exec rake spec`). To run specific specs, use RSpec filtering (`fdescribe`, `fit`, `xdescribe`, `xit`)
Severity: Info
Found in README.md by markdownlint

MD029 - Ordered list item prefix

Tags: ol

Aliases: ol-prefix

Parameters: style ("one", "ordered"; default "one")

This rule is triggered on ordered lists that do not either start with '1.' or do not have a prefix that increases in numerical order (depending on the configured style, which defaults to 'one').

Example valid list if the style is configured as 'one':

1. Do this.
1. Do that.
1. Done.

Example valid list if the style is configured as 'ordered':

1. Do this.
2. Do that.
3. Done.

Unexpected token '}' at line 91, col 2.
Open

    }
Severity: Minor
Found in src/transactions/css/index.css by csslint

Element (i.action.active) is overqualified, just use .action without element name.
Open

.has-action i.action.active {
Severity: Minor
Found in src/transactions/css/status.css by csslint

Element (i.action.active) is overqualified, just use .active without element name.
Open

.has-action i.action.active {
Severity: Minor
Found in src/transactions/css/status.css by csslint

The property -moz-user-select is compatible with -webkit-user-select and should be included as well.
Open

    -webkit-user-select: none;
Severity: Minor
Found in src/loot/css/loot.css by csslint

The property -ms-user-select is compatible with -webkit-user-select and should be included as well.
Open

    -webkit-user-select: none;
Severity: Minor
Found in src/loot/css/loot.css by csslint

Unexpected token '}' at line 105, col 1.
Open

}
Severity: Minor
Found in src/loot/css/loot.css by csslint

Unexpected token '&' at line 16, col 2.
Open

    &.left + .popover {

Line length
Open

| Snyk (npm)     | [![Known Vulnerabilities](https://snyk.io/test/github/scottohara/loot/badge.svg)](https://snyk.io/test/github/scottohara/loot)                                                 |
Severity: Info
Found in README.md by markdownlint

MD013 - Line length

Tags: line_length

Aliases: line-length Parameters: linelength, codeblocks, tables (number; default 80, boolean; default true)

This rule is triggered when there are lines that are longer than the configured line length (default: 80 characters). To fix this, split the line up into multiple lines.

This rule has an exception where there is no whitespace beyond the configured line length. This allows you to still include items such as long URLs without being forced to break them in the middle.

You also have the option to exclude this rule for code blocks and tables. To do this, set the code_blocks and/or tables parameters to false.

Code blocks are included in this rule by default since it is often a requirement for document readability, and tentatively compatible with code rules. Still, some languages do not lend themselves to short lines.

Severity
Category
Status
Source
Language