diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-02-13 14:49:07 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-02-13 14:49:07 +0100 |
commit | 670afd8921d46956cc3d43dd34078c2dc984faf2 (patch) | |
tree | abad242f7d63758cf5981d030540c93329271c31 /lib/compilers/haskell.js | |
parent | 493188661dd2b40384f1fd429daaf0a4dc1278d9 (diff) | |
download | compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.tar.gz compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.zip |
Move to ESLint
Somewhat compilant!
Diffstat (limited to 'lib/compilers/haskell.js')
-rw-r--r-- | lib/compilers/haskell.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/haskell.js b/lib/compilers/haskell.js index b267cf4b1..b161046ef 100644 --- a/lib/compilers/haskell.js +++ b/lib/compilers/haskell.js @@ -25,7 +25,7 @@ const BaseCompiler = require('../base-compiler'); class HaskellCompiler extends BaseCompiler { - optionsForFilter(filters, outputFilename, userOptions) { + optionsForFilter(filters, outputFilename) { return ['-S', '-g', '-o', this.filename(outputFilename)]; } } |