diff --git a/lib/rules/best-practices/use-natspec.js b/lib/rules/best-practices/use-natspec.js index 046876f3..177cac6a 100644 --- a/lib/rules/best-practices/use-natspec.js +++ b/lib/rules/best-practices/use-natspec.js @@ -279,10 +279,6 @@ class UseNatspecChecker extends BaseChecker { const startOffset = node.range[0] const comments = getLeadingNatSpecComments(startOffset, this.tokens) - console.log('isPublicLike :>> ', isPublicLike) - console.log('comments.length :>> ', comments.length) - console.log('type :>> ', type) - // check the function is not publicLike and has no tags, avoid checking // if it is internal or private and has natspec comments, check them if (!isPublicLike && comments.length === 0 && type === 'function') return