Showing 7 of 12 total issues
Builder
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
export class Builder<
TReturnType extends Output = PathsOutput,
TGlobFunction = typeof picomatch
> {
private readonly globCache: Record<string, Matcher> = {};
Function build
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
export function build<TOutput extends Output>(
options: Options,
isSynchronous: boolean
): InvokeCallbackFunction<TOutput> {
const { onlyCounts, group, maxFiles } = 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
Avoid deeply nested control flow statements. Open
if (exclude && exclude(entry.name, resolvedPath)) return;
Function build
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function build(options: Options): PushFileFunction {
const { excludeFiles, filters, onlyCounts } = options;
if (excludeFiles) return empty;
if (filters && filters.length) {
- 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 isRecursive
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function isRecursive(path: string, resolved: string, state: WalkerState) {
if (state.options.useRealPaths)
return isRecursiveUsingRealPaths(resolved, state);
let parent = dirname(path);
- 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 build
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export function build(root: string, options: Options): PushDirectoryFunction {
const { includeDirs, filters, relativePaths } = options;
if (!includeDirs) return empty;
if (relativePaths)
- 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 normalizePath
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export function normalizePath(
path: string,
options: {
resolvePaths?: boolean;
normalizePath?: boolean;
- 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"