diff options
author | Matt Godbolt <matt@godbolt.org> | 2016-10-12 13:26:16 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2016-10-12 13:26:16 -0500 |
commit | 6fc5c166daa7008668061b8c72cdfe9c80d03721 (patch) | |
tree | 5f6dcdd5ffb17657d9e100f2df517264217d2a29 /lib/diff.js | |
parent | 2e3c59838040dbde42f73737179883ba11f13d33 (diff) | |
download | compiler-explorer-6fc5c166daa7008668061b8c72cdfe9c80d03721.tar.gz compiler-explorer-6fc5c166daa7008668061b8c72cdfe9c80d03721.zip |
Lint fixes
Diffstat (limited to 'lib/diff.js')
-rw-r--r-- | lib/diff.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/diff.js b/lib/diff.js index bf31673c4..f78e32343 100644 --- a/lib/diff.js +++ b/lib/diff.js @@ -2,7 +2,8 @@ var fs = require('fs'), child_process = require('child_process'), temp = require('temp'), path = require('path'), - Promise = require('promise'); + Promise = require('promise') // jshint ignore:line + ; function cleanAndGetIndexes(text) { var addRules = { |