You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Checks if the documentation has to be generated for this contractconstincludesPath=config.include.some((str)=>filePath.includes(str));
The above check in index.ts#L40, seems to be causing a slightly unwanted issue.
If there are two contracts that have the same substring in the contract name, docs are being generated for both contracts, even if I've only included one of them in hre.config.dodoc.include
The above check in index.ts#L40, seems to be causing a slightly unwanted issue.
If there are two contracts that have the same substring in the contract name, docs are being generated for both contracts, even if I've only included one of them in
hre.config.dodoc.include
Eg.
contract/ContractName.sol
,contracts/test/TestContractName.sol
Docs will be generated for both contracts, even if
hre.config.dodoc.include = ['ContractName']
The text was updated successfully, but these errors were encountered: