access-sniff
Advanced tools
Comparing version 2.3.1 to 2.3.2
@@ -197,7 +197,2 @@ 'use strict'; | ||
// Reset the error count per file | ||
this.errorCount = 0; | ||
this.noticeCount = 0; | ||
this.warningCount = 0; | ||
// Run the messages through the parser | ||
@@ -232,3 +227,3 @@ fileMessages.every(function (messageString) { | ||
if (showMessage && messageLog.length || this.options.verbose && messageLog.length) { | ||
if (showMessage && messageLog.length || this.options.verbose) { | ||
_logger2.default.startMessage('Tested ' + this.options.filePath); | ||
@@ -271,2 +266,6 @@ messageLog.forEach(function (message) { | ||
if (this.options.verbose) { | ||
_logger2.default.startMessage('Testing ' + this.options.filePath); | ||
} | ||
// Get file contents | ||
@@ -273,0 +272,0 @@ if (_validator2.default.isURL(file)) { |
{ | ||
"name": "access-sniff", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "A node/iojs library & CLI for HTML_Codesniffer", | ||
@@ -5,0 +5,0 @@ "main": "dist/", |
@@ -156,7 +156,2 @@ /* | ||
// Reset the error count per file | ||
this.errorCount = 0; | ||
this.noticeCount = 0; | ||
this.warningCount = 0; | ||
// Run the messages through the parser | ||
@@ -192,3 +187,3 @@ fileMessages.every(messageString => { | ||
if (showMessage && messageLog.length || this.options.verbose && messageLog.length) { | ||
if (showMessage && messageLog.length || this.options.verbose) { | ||
logger.startMessage(`Tested ${this.options.filePath}`); | ||
@@ -223,2 +218,6 @@ messageLog.forEach(message => logger.generalMessage(message)); | ||
if (this.options.verbose) { | ||
logger.startMessage(`Testing ${this.options.filePath}`); | ||
} | ||
// Get file contents | ||
@@ -225,0 +224,0 @@ if (validator.isURL(file)) { |
Sorry, the diff of this file is too big to display
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
396683
2781