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
I would find it useful to allow the use of comments in the source code to configure natspec-smells in a given line or file. I find myself wanting to disable the linter on certain functions like this, similar to solhint:
// natspec-smells-disable-next-linefunction transferTo(addressto, uintamount) public {
require(tx.origin== owner);
to.call.value(amount)();
}
The text was updated successfully, but these errors were encountered:
I would find it useful to allow the use of comments in the source code to configure natspec-smells in a given line or file. I find myself wanting to disable the linter on certain functions like this, similar to solhint:
The text was updated successfully, but these errors were encountered: