UNPKG

jscpd-gitlab-reporter

Version:

Reporter for jscpd. Generate a report in CodeClimate format for use in GitLab Code Quality Reports.

11 lines (8 loc) 278 B
import { IOptions, IClone } from '@jscpd/core'; import { IReporter } from '@jscpd/finder'; declare class GitLabReporter implements IReporter { private options; constructor(options: IOptions); report(clones: IClone[]): void; } export { GitLabReporter as default };