Showing 16 of 26 total issues
File lookup.ts
has 686 lines of code (exceeds 250 allowed). Consider refactoring. Open
import Metalsmith from 'metalsmith';
import { ObjectState } from 'object-rollback';
import { URL } from 'url';
import PreviewCache, { CachedPreviewResponseInterface } from './cache/preview';
Function netlifyDeploys
has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring. Open
export async function* netlifyDeploys(
siteID: string,
options: {
accessToken?: string | null;
commitHashList?: readonly string[];
- 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 netlifyDeploys
has 153 lines of code (exceeds 25 allowed). Consider refactoring. Open
export async function* netlifyDeploys(
siteID: string,
options: {
accessToken?: string | null;
commitHashList?: readonly string[];
Function convertReplace
has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring. Open
export function convertReplace({
replace: schema,
}: {
replace: unknown;
}): ReturnFuncType {
- 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 getPreviewDataList
has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring. Open
export async function getPreviewDataList({
targetFileList,
files,
dateStateMap,
deploy,
- 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 redirectFetch
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
export async function redirectFetch(
requestURL: string | WHATWG_URL,
options: FetchOptions = {},
/** @see https://fetch.spec.whatwg.org/commit-snapshots/8ca61488c0c9efb32fd138ce14e25ce2b4ce0dfc/#http-redirect-fetch */
maxRedirects = 20,
- 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 fetch
has 55 lines of code (exceeds 25 allowed). Consider refactoring. Open
(async (url, headers) => {
requestLog('GET %s / headers %o', url, headers);
const result = await redirectFetch(url, { headers }).catch(
error => {
responseErrorLog(
Function redirectFetch
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
export async function redirectFetch(
requestURL: string | WHATWG_URL,
options: FetchOptions = {},
/** @see https://fetch.spec.whatwg.org/commit-snapshots/8ca61488c0c9efb32fd138ce14e25ce2b4ce0dfc/#http-redirect-fetch */
maxRedirects = 20,
Function normalize
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
export function normalize(value: unknown): ReturnFuncType {
if (typeof value === 'function') {
return strReturnFunc(
value,
`The function set to option "${PROP}" did not return a string`,
Function normalize
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
export function normalize(value: unknown): ReturnFuncType {
if (typeof value === 'function') {
return strReturnFunc(
value,
`The function set to option "${PROP}" did not return a string`,
- 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 fetchPageData
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export async function fetchPageData({
filename,
urlpath,
previewPageURL,
deploy,
- 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 (typeof value === 'string') {
return value;
}
Avoid deeply nested control flow statements. Open
if (!matchedDeployList.includes(initialDeploy)) {
responseLog(
'get the initial deploy from the response / %s',
url,
);
Function convertMetadata
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function convertMetadata({
metadata: schema,
}: {
metadata: unknown;
}): ReturnFuncType {
- 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 default
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export default async function({
targetFileList,
options: pluginOptions,
metalsmith,
files,
- 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 getProcessedFiles
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export async function getProcessedFiles({
previewDataList,
files,
// filesState,
// dateStateMap,
- 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"