Skip to content

Commit

Permalink
Add .eslintignore, tidy up a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
NuSkooler committed Jun 22, 2018
1 parent e9787ce commit a4e10f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ACS parser is generated
core/acs_parser.js
4 changes: 2 additions & 2 deletions core/scanner_tossers/ftn_bso.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ exports.moduleInfo = {

exports.getModule = FTNMessageScanTossModule;

const SCHEDULE_REGEXP = /(?:^|or )?(@watch\:|@immediate)([^\0]+)?$/;
const SCHEDULE_REGEXP = /(?:^|or )?(@watch:|@immediate)([^\0]+)?$/;

function FTNMessageScanTossModule() {
MessageScanTossModule.call(this);
Expand Down Expand Up @@ -1569,7 +1569,7 @@ function FTNMessageScanTossModule() {
//
// All extracted - import .pkt's
//
self.importPacketFilesFromDirectory(self.importTempDir, '', err => {
self.importPacketFilesFromDirectory(self.importTempDir, '', () => {
// :TODO: handle |err|
callback(null, bundleFiles, rejects);
});
Expand Down

0 comments on commit a4e10f5

Please sign in to comment.