Add .eslintignore, tidy up a bit

This commit is contained in:
Bryan Ashby 2018-06-21 23:35:52 -06:00
parent e9787cee3e
commit a4e10f5ba5
2 changed files with 4 additions and 2 deletions

2
.eslintignore Normal file
View File

@ -0,0 +1,2 @@
# ACS parser is generated
core/acs_parser.js

View File

@ -51,7 +51,7 @@ exports.moduleInfo = {
exports.getModule = FTNMessageScanTossModule; exports.getModule = FTNMessageScanTossModule;
const SCHEDULE_REGEXP = /(?:^|or )?(@watch\:|@immediate)([^\0]+)?$/; const SCHEDULE_REGEXP = /(?:^|or )?(@watch:|@immediate)([^\0]+)?$/;
function FTNMessageScanTossModule() { function FTNMessageScanTossModule() {
MessageScanTossModule.call(this); MessageScanTossModule.call(this);
@ -1569,7 +1569,7 @@ function FTNMessageScanTossModule() {
// //
// All extracted - import .pkt's // All extracted - import .pkt's
// //
self.importPacketFilesFromDirectory(self.importTempDir, '', err => { self.importPacketFilesFromDirectory(self.importTempDir, '', () => {
// :TODO: handle |err| // :TODO: handle |err|
callback(null, bundleFiles, rejects); callback(null, bundleFiles, rejects);
}); });