Showing 4 of 4 total issues
File index.ts
has 278 lines of code (exceeds 250 allowed). Consider refactoring. Open
import createDebug from 'debug';
import isPathInside from 'is-path-inside';
import Metalsmith from 'metalsmith';
import path from 'path';
import postcss from 'postcss';
Function processFile
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
async function processFile({
files,
writableFiles,
metalsmith,
options,
- Read upRead up
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 findFile
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export function findFile<T = unknown>(
files: MetalsmithStrictFiles,
searchFilename: string,
metalsmith?: Metalsmith,
filter?: (value: unknown) => value is T,
- Read upRead up
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 loadPlugin
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function loadPlugin(
pluginName: string,
pluginOptions: unknown,
propList: ReadonlyArray<string | number>,
): postcss.AcceptedPlugin {
- Read upRead up
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"