This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
v2.0.0-beta.2
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.