eslint-plugin-no-comments
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "eslint-plugin-no-comments", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "ESLint plugin to disallow comment blocks", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -7,3 +7,3 @@ module.exports = { | ||
}, | ||
create(context) { | ||
create: function(context) { | ||
const sourceCode = context.getSourceCode(); | ||
@@ -26,3 +26,3 @@ function processComment(comment) { | ||
const comments = sourceCode.getAllComments(); | ||
comments.forEach(processComment); | ||
comments.forEach(processComment); | ||
}, | ||
@@ -29,0 +29,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1095