1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-11 12:41:06 +01:00

chore: decaffeinate: fix eslint violations

This commit is contained in:
hacksalot
2018-02-14 10:02:44 -05:00
parent 8a46d642e5
commit 42d249b407
40 changed files with 412 additions and 454 deletions

View File

@ -15,9 +15,6 @@ const FS = require('fs');
const HMS = require('./status-codes');
const HME = require('./event-codes');
const ResumeConverter = require('fresh-jrs-converter');
const chalk = require('chalk');
const SyntaxErrorEx = require('../utils/syntax-error-ex');
const _ = require('underscore');
const resumeDetect = require('../utils/resume-detector');
require('string.prototype.startswith');
@ -28,7 +25,7 @@ A simple factory class for FRESH and JSON Resumes.
@class ResumeFactory
*/
const ResumeFactory = (module.exports = {
module.exports = {
@ -96,7 +93,7 @@ const ResumeFactory = (module.exports = {
rez
};
}
});
};
var _parse = function( fileName, opts, eve ) {