This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
const href = window.location.href; | |
const query = href.split('?')[1]; | |
let queryObj = null; | |
if (query) { | |
queryObj = query.split('&').map(it => { | |
return it.split('=') | |
}).find(it => it[0] === 'selectedIssue'); | |
}; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Should be put into ~/.sbt/1.0/plugins/bloop.sbt | |
// By default, this file does not do anything. | |
// If the environment variable BLOOP_ENABLED has the value 'true', | |
// then this file enables sbt-bloop. | |
if (System.getenv("BLOOP_ENABLED") == "true") { | |
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.3.4") | |
} else Nil |