@@ -10,27 +10,27 @@ object BuildSettings {
10
10
libraryDependencies ++= Seq (
11
11
compilerPlugin(Dependencies .kindProjector),
12
12
compilerPlugin(Dependencies .silencer),
13
- compilerPlugin(scalafixSemanticdb), // for scalafix
13
+ compilerPlugin(scalafixSemanticdb), // for Scalafix
14
14
Dependencies .silencerLib
15
15
),
16
16
Compile / compile / wartremoverErrors ++= Warts .all filterNot Set (
17
- Wart .Null , // checked by scalafix
17
+ Wart .Null , // checked by Scalafix
18
18
Wart .Nothing , // keep, false positives all around
19
19
Wart .Overloading ,
20
20
Wart .Any , // keep, false positives all around
21
- Wart .Equals , // checked by scalafix
22
- Wart .ToString , // checked by scalafix
23
- Wart .Product , // checked by scalafix
24
- Wart .Serializable , // checked by scalafix
21
+ Wart .Equals , // checked by Scalafix
22
+ Wart .ToString , // checked by Scalafix
23
+ Wart .Product , // checked by Scalafix
24
+ Wart .Serializable , // checked by Scalafix
25
25
Wart .DefaultArguments // for constructors for PureConfig
26
26
),
27
27
ThisBuild / scalafixDependencies ++= Seq (
28
28
Dependencies .scalazzi,
29
29
Dependencies .sortImports
30
30
),
31
31
scalacOptions ++= Seq (
32
- " -Yrangepos" , // for scalafix . required by SemanticDB compiler plugin
33
- " -Ywarn-unused" , // for scalafix . not present in sbt-tpolecat for 2.13
32
+ " -Yrangepos" , // for Scalafix . required by SemanticDB compiler plugin
33
+ " -Ywarn-unused" , // for Scalafix . not present in sbt-tpolecat for 2.13
34
34
" -P:silencer:checkUnused"
35
35
),
36
36
Test / publishArtifact := false ,
0 commit comments