Skip to content
Snippets Groups Projects
Commit dac3bdec authored by neon-dev's avatar neon-dev Committed by Marijn Haverbeke
Browse files

[javascript-lint addon] Remove obsolete function

parent d8d68a8a
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,6 @@ ...@@ -12,8 +12,6 @@
"use strict"; "use strict";
// declare global: JSHINT // declare global: JSHINT
var bogus = [ "Dangerous comment" ];
var replacements = [ [ "Expected '{'", var replacements = [ [ "Expected '{'",
"Statement body should be inside '{ }' braces." ] ]; "Statement body should be inside '{ }' braces." ] ];
...@@ -46,8 +44,6 @@ ...@@ -46,8 +44,6 @@
function cleanup(error) { function cleanup(error) {
fixWith(error, forcedErrorCodes, replacements); fixWith(error, forcedErrorCodes, replacements);
return isBogus(error) ? null : error;
} }
function fixWith(error, forcedErrorCodes, replacements) { function fixWith(error, forcedErrorCodes, replacements) {
...@@ -78,16 +74,6 @@ ...@@ -78,16 +74,6 @@
} }
} }
function isBogus(error) {
var description = error.description;
for ( var i = 0; i < bogus.length; i++) {
if (description.indexOf(bogus[i]) !== -1) {
return true;
}
}
return false;
}
function parseErrors(errors, output) { function parseErrors(errors, output) {
for ( var i = 0; i < errors.length; i++) { for ( var i = 0; i < errors.length; i++) {
var error = errors[i]; var error = errors[i];
...@@ -143,7 +129,7 @@ ...@@ -143,7 +129,7 @@
error.start = error.character; error.start = error.character;
error.end = end; error.end = end;
error.severity = error.code.startsWith('W') ? "warning" : "error"; error.severity = error.code.startsWith('W') ? "warning" : "error";
error = cleanup(error); cleanup(error);
if (error) if (error)
output.push({message: error.description, output.push({message: error.description,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment