Spacing consistence check added

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 9 years ago
parent cd484d5c93
commit 65fb8a4b76
  1. 6
      BuildServer/lib/tasks/dotnetcheckstyle.js

@ -30,11 +30,13 @@ module.exports = function (params, processor) {
return function (callback) {
return fs.readFile(processor.context.exported + "/" + file, { encoding: "utf8" }, function (err, data) {
if (err) {
processor.onError("Unable to rewrite file " + file + ": " + err);
processor.onError("Unable to check file " + file + ": " + err);
} else if (data.indexOf("\r\n") >= 0) {
processor.onError("Windows-style EOL (0D0A) found in file " + file);
} else if (data.indexOf("\t") >= 0 && data.indexOf(" ") >= 0) {
processor.onError("Both tabs and spaces found in file " + file);
} else {
processor.onInfo("Rewritten file " + file);
processor.onInfo("Checked file " + file);
}
callback(err);
});

Loading…
Cancel
Save