Showing 36 of 74 total issues
File markdownlint-0.27.0.min.js
has 3567 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/*! markdownlint 0.27.0 https://github.com/DavidAnson/markdownlint @license MIT */var markdownlint;/******/ (() => { // webpackBootstrap/******/ var __webpack_modules__ = ({
File highlight-11.8.0.min.js
has 1160 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/*! Highlight.js v11.8.0 (git: 65687a907b) (c) 2006-2023 undefined and other contributors License: BSD-3-Clause */
Consider simplifying this complex logical expression. Open
Open
if ( // Allow <...> to avoid reporting non-bare links !(prefix.endsWith("<") && postfix.startsWith(">")) && // Allow >...</ to avoid reporting <code>...</code> !(prefix.endsWith(">") && postfix.startsWith("</")) &&
Consider simplifying this complex logical expression. Open
Open
if ((includeCodeBlocks || !inCode) && (includeTables || !inTable) && (includeHeadings || !isHeading) && !includesSorted(definitionLineIndices, lineIndex) && (strict ||
Consider simplifying this complex logical expression. Open
Open
if (styleForToken !== style) { const h12 = /h[12]/.test(token.tag); const setextWithAtx = (style === "setext_with_atx") && ((h12 && (styleForToken === "setext")) || (!h12 && (styleForToken === "atx")));
Consider simplifying this complex logical expression. Open
Open
if (!matchString.startsWith("\\") && !matchString.startsWith("!\\") && !matchText.endsWith("\\") && !(matchLabel || "").endsWith("\\") && !(topLevel && excluded(referenceLinkMatch))) {
Function lintFile
has 12 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function lintFile(ruleList, file, md, config, configParsers, frontMatter, handleRuleFailures, noInlineConfig, resultVersion, fs, synchronous, callback) {
Function lintContent
has 11 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function lintContent(ruleList, name, content, md, config, configParsers, frontMatter, handleRuleFailures, noInlineConfig, resultVersion, callback) {
Consider simplifying this complex logical expression. Open
Open
if (errorInfo.range && (!Array.isArray(errorInfo.range) || (errorInfo.range.length !== 2) || !helpers.isNumber(errorInfo.range[0]) || (errorInfo.range[0] < 1) ||
Function addErrorDetailIf
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
module.exports.addErrorDetailIf = function addErrorDetailIf(onError, lineNumber, expected, actual, detail, context, range, fixInfo) {
Consider simplifying this complex logical expression. Open
Open
if (trailingSpaces && !inCode && !includesSorted(listItemLineNumbers, lineNumber) && ((expected !== trailingSpaces) || (strict &&
Consider simplifying this complex logical expression. Open
Open
if ((includeListItems || !inItem) && ((onTopFence && !isBlankLine(lines[i - 1])) || (onBottomFence && !isBlankLine(lines[i + 1])))) { const [, prefix] = line.match(codeFencePrefixRe) || []; const fixInfo = (prefix === undefined) ? null : {
Consider simplifying this complex logical expression. Open
Open
if (j > i + htmlCommentBegin.length) { const content = text.slice(i + htmlCommentBegin.length, j); const lastLf = text.lastIndexOf("\n", i) + 1; const preText = text.slice(lastLf, i); const isBlock = preText.trim().length === 0;
Function addErrorContext
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
module.exports.addErrorContext = function addErrorContext(onError, lineNumber, context, left, right, range, fixInfo) {
Function getEnabledRulesPerLineNumber
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function getEnabledRulesPerLineNumber(ruleList, lines, frontMatterLines, noInlineConfig, config, configParsers, aliasToRuleNames) {
Avoid deeply nested control flow statements. Open
Open
if (!listItemNesting || (fullMatch[fullMatch.length - 1] === ">")) { addErrorContext(onError, lineNumber + i, line, null, null, [1, fullMatch.length], { "editColumn": blockquoteLength + 1, "deleteCount": spaceLength - 1 });
Function handleRunEnd
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
function handleRunEnd(line, lineIndex, contextLength, match, matchIndex, inTable) {
Avoid deeply nested control flow statements. Open
Open
if (destEnd !== -1) { // Call handler with link text and destination const link = line.slice(i, destEnd); const text = line.slice(i, textEnd); const dest = line.slice(textEnd, destEnd);
Avoid deeply nested control flow statements. Open
Open
if (!nestingStyles[nesting]) { nestingStyles[nesting] = (itemStyle === nestingStyles[nesting - 1]) ? differentItemStyle[itemStyle] : itemStyle;
Avoid deeply nested control flow statements. Open
Open
if (firstNumber === "0") { current = 0; }