Merge pull request #5983 from xirc/issues/5955

Add `shellPrompt` into excludeLintKeys
This commit is contained in:
eugene yokota 2020-10-18 04:06:28 -04:00 committed by GitHub
commit 28833db333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,7 @@ object LintUnused {
onUnload,
sbt.nio.Keys.watchTriggers,
serverConnectionType,
shellPrompt,
),
includeLintKeys := Set(
scalacOptions,

View File

@ -1,5 +1,7 @@
ThisBuild / doc / scalacOptions += "-Xsomething"
ThisBuild / shellPrompt := { state => "sbt> " }
lazy val lintBuildTest = taskKey[Unit]("")
lazy val root = (project in file("."))