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,
|
onUnload,
|
||||||
sbt.nio.Keys.watchTriggers,
|
sbt.nio.Keys.watchTriggers,
|
||||||
serverConnectionType,
|
serverConnectionType,
|
||||||
|
shellPrompt,
|
||||||
),
|
),
|
||||||
includeLintKeys := Set(
|
includeLintKeys := Set(
|
||||||
scalacOptions,
|
scalacOptions,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
ThisBuild / doc / scalacOptions += "-Xsomething"
|
ThisBuild / doc / scalacOptions += "-Xsomething"
|
||||||
|
|
||||||
|
ThisBuild / shellPrompt := { state => "sbt> " }
|
||||||
|
|
||||||
lazy val lintBuildTest = taskKey[Unit]("")
|
lazy val lintBuildTest = taskKey[Unit]("")
|
||||||
|
|
||||||
lazy val root = (project in file("."))
|
lazy val root = (project in file("."))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue