khalyomede/gridsome-plugin-service-worker

View on GitHub

Showing 26 of 26 total issues

Function _addNetworkFirstToServiceWorkerContent has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    private _addNetworkFirstToServiceWorkerContent(): void {
        if (
            "networkFirst" in this._options &&
            this._options.networkFirst instanceof Object &&
            (this._options.networkFirst.routes.length > 0 ||
Severity: Minor
Found in src/gridsome.server.ts - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _addStaleWhileRevalidateToServiceWorkerContent has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    private _addStaleWhileRevalidateToServiceWorkerContent(): void {
        if (
            "staleWhileRevalidate" in this._options &&
            this._options.staleWhileRevalidate instanceof Object &&
            (this._options.staleWhileRevalidate.routes.length > 0 ||
Severity: Minor
Found in src/gridsome.server.ts - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _addCacheOnlyToServiceWorkerContent has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    private _addCacheOnlyToServiceWorkerContent(): void {
        if (
            "cacheOnly" in this._options &&
            this._options.cacheOnly instanceof Object &&
            (this._options.cacheOnly.routes.length > 0 ||
Severity: Minor
Found in src/gridsome.server.ts - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _addNetworkOnlyToServiceWorkerContent has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    private _addNetworkOnlyToServiceWorkerContent(): void {
        if (
            "networkOnly" in this._options &&
            this._options.networkOnly instanceof Object &&
            (this._options.networkOnly.routes.length > 0 ||
Severity: Minor
Found in src/gridsome.server.ts - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _addCacheFirstToServiceWorkerContent has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    private _addCacheFirstToServiceWorkerContent(): void {
        if (
            "cacheFirst" in this._options &&
            this._options.cacheFirst instanceof Object &&
            (this._options.cacheFirst.routes.length > 0 ||
Severity: Minor
Found in src/gridsome.server.ts - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function _checkOptionPrecachedRoutes has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    private _checkOptionPrecachedRoutes(): void {
        if ("precachedRoutes" in this._options) {
            if (!Array.isArray(this._options.precachedRoutes)) {
                throw new TypeError(`"precachedRoutes" must be an array`);
            }
Severity: Minor
Found in src/gridsome.server.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language