Showing 5 of 5 total issues
Function resources
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
...metalsmith.match(defaultedOptions.html, Object.keys(files)).map((filename) => { debug('finding resources in file: %s', filename); const file = files[filename];
Function metalsmith
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
metalsmith(realMetalsmith: Metalsmith, options: Options = {}): Metalsmith { const { run } = realMetalsmith; // @ts-expect-error Metalsmith.run()'s three different signatures makes TypeScript mad here realMetalsmith.run = async ( inputFiles: Metalsmith.Files,
Function run
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
realMetalsmith.run = async ( inputFiles: Metalsmith.Files, argTwo: Metalsmith.Callback | Metalsmith.Plugin[] | undefined, argThree: Metalsmith.Callback | undefined, ) => {
Function upgradeHtmllintConfig
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const upgradeHtmllintConfig = (htmllint: LegacyLinterConfig): LinterConfig => { const config: { [key: string]: unknown } = {}; // https://github.com/linthtml/linthtml/blob/0.3.0/docs/migrations.md const rules = Object.keys(htmllint).reduce(
Function metalsmith
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
metalsmith(realMetalsmith: Metalsmith, options: Options = {}): Metalsmith { const { run } = realMetalsmith; // @ts-expect-error Metalsmith.run()'s three different signatures makes TypeScript mad here realMetalsmith.run = async ( inputFiles: Metalsmith.Files,
- Read upRead up