Skip to content

Commit 548c4d4

Browse files
Merge pull request #735 from brossetti1/develop
removing console log from use-natspec path
2 parents 193cfff + f759941 commit 548c4d4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/rules/best-practices/use-natspec.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,6 @@ class UseNatspecChecker extends BaseChecker {
279279
const startOffset = node.range[0]
280280
const comments = getLeadingNatSpecComments(startOffset, this.tokens)
281281

282-
console.log('isPublicLike :>> ', isPublicLike)
283-
console.log('comments.length :>> ', comments.length)
284-
console.log('type :>> ', type)
285-
286282
// check the function is not publicLike and has no tags, avoid checking
287283
// if it is internal or private and has natspec comments, check them
288284
if (!isPublicLike && comments.length === 0 && type === 'function') return

0 commit comments

Comments
 (0)