MaibornWolff / metric-gardener

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix comments in Configuration.ts

clemens-mw opened this issue · comments

export class Configuration {
    // ...

    /**
     * Whether dependencies should be analyzed.
     */
    readonly parseMetrics: boolean;

    /**
     * Folders to exclude from being searched for files to be parsed.
     */
    readonly parseDependencies: boolean;

    /**
     * Folders to exclude from being searched for files to be parsed.
     */
    readonly exclusions: Set<string>;

    // ...
}

we always set this.parseMetrics = true;
can we remove it?