-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
export interface UserConfig { | ||
contracts: string; // Required: The directory containing your Solidity contracts. | ||
include: string; // Required: Glob pattern of files to process. | ||
exclude?: string[]; // Optional: Glob patterns of files to exclude. | ||
root?: string; // Optional: The target root directory. | ||
enforceInheritdoc?: boolean; // Optional: If set to true, all external and public functions must have @inheritdoc. | ||
constructorNatspec?: boolean; // Optional: True if constructor natspec is mandatory. | ||
ignore?: string[]; // Optional: Glob pattern of files and directories to exclude from processing. | ||
} | ||
|
||
// Config type after all the default values are applied | ||
export interface InternalConfig { | ||
contracts: string; | ||
include: string; | ||
exclude: string[]; | ||
root: string; | ||
enforceInheritdoc: boolean; | ||
constructorNatspec: boolean; | ||
ignore: string[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters