Showing 9 of 9 total issues
OptionsBuilder
has 32 functions (exceeds 20 allowed). Consider refactoring. Open
export class OptionsBuilder { private options: Options; static create() { return new OptionsBuilder();
File imagetracer.ts
has 318 lines of code (exceeds 250 allowed). Consider refactoring. Open
/* eslint-disable @typescript-eslint/camelcase */import ImageTracer, { BlurRadius, ColorComponentValue, ColorSampling,
Function fromHumanReadableOptions
has 64 lines of code (exceeds 25 allowed). Consider refactoring. Open
static fromHumanReadableOptions(options: HumanReadableInputOptions): OptionsBuilder { const optionsBuilder = OptionsBuilder.create(); const { tracing, colorQuantization, layering, svgRendering, blurPreprocessing, debug, palette } = options; if (tracing != null) {
Function buildHumanReadable
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
buildHumanReadable(): HumanReadableOptions { return { tracing: { enableCORS: this.options.corsenabled, straightLinesThreshold: this.options.ltres,
Function fromHumanReadableOptions
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
static fromHumanReadableOptions(options: HumanReadableInputOptions): OptionsBuilder { const optionsBuilder = OptionsBuilder.create(); const { tracing, colorQuantization, layering, svgRendering, blurPreprocessing, debug, palette } = options; if (tracing != null) {
- Read upRead up
Function buildHumanReadable
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
buildHumanReadable(): HumanReadableOptions { return { tracing: { enableCORS: this.options.corsenabled, straightLinesThreshold: this.options.ltres,
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
debugStraghtLineControlPointRadius(straightLineControlPointRadius: PointRadius): this { this.options.lcpr = straightLineControlPointRadius === 'disabled' ? 0 : straightLineControlPointRadius; return this; }
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
debugQuadraticSplineControlPointerRadius(quadraticSplineControlPointerRadius: PointRadius): this { this.options.qcpr = quadraticSplineControlPointerRadius === 'disabled' ? 0 : quadraticSplineControlPointerRadius; return this; }
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
blurPreprocessingBlurRadius(blurRadius: BlurRadius): this { this.options.blurradius = blurRadius === 'disabled' ? 0 : blurRadius; return this; }
- Read upRead up