We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193cfff commit f759941Copy full SHA for f759941
lib/rules/best-practices/use-natspec.js
@@ -279,10 +279,6 @@ class UseNatspecChecker extends BaseChecker {
279
const startOffset = node.range[0]
280
const comments = getLeadingNatSpecComments(startOffset, this.tokens)
281
282
- console.log('isPublicLike :>> ', isPublicLike)
283
- console.log('comments.length :>> ', comments.length)
284
- console.log('type :>> ', type)
285
-
286
// check the function is not publicLike and has no tags, avoid checking
287
// if it is internal or private and has natspec comments, check them
288
if (!isPublicLike && comments.length === 0 && type === 'function') return
0 commit comments