mirror of https://github.com/sbt/sbt.git
Merge pull request #5983 from xirc/issues/5955
Add `shellPrompt` into excludeLintKeys
This commit is contained in:
commit
28833db333
|
|
@ -37,6 +37,7 @@ object LintUnused {
|
|||
onUnload,
|
||||
sbt.nio.Keys.watchTriggers,
|
||||
serverConnectionType,
|
||||
shellPrompt,
|
||||
),
|
||||
includeLintKeys := Set(
|
||||
scalacOptions,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
ThisBuild / doc / scalacOptions += "-Xsomething"
|
||||
|
||||
ThisBuild / shellPrompt := { state => "sbt> " }
|
||||
|
||||
lazy val lintBuildTest = taskKey[Unit]("")
|
||||
|
||||
lazy val root = (project in file("."))
|
||||
|
|
|
|||
Loading…
Reference in New Issue