Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

v2.0.0-beta.2

Compare
Choose a tag to compare
@samrith-s samrith-s released this 21 Aug 23:11

The new configuration structure allows to specify whether logging should be verbose. The new config structure is as follows:

type Structurizer = {
    match: string;
    folder: string;
};

type Config = {
    verbose?: boolean;
    rules: Structurizer[];
};

The default config has also been updated to reflect the changes.