17 lines
308 B
Text
17 lines
308 B
Text
|
|
// .scalafix.conf
|
||
|
|
rules = [
|
||
|
|
RemoveUnused
|
||
|
|
]
|
||
|
|
RemoveUnused.imports = true
|
||
|
|
RemoveUnused.privates = false
|
||
|
|
RemoveUnused.locals = false
|
||
|
|
|
||
|
|
//ignored files
|
||
|
|
ignored-files = [
|
||
|
|
"TypedBenchmarkActors.scala",
|
||
|
|
"FlowPrependSpec.scala",
|
||
|
|
"FlowZipSpec.scala",
|
||
|
|
"FlowZipWithSpec.scala",
|
||
|
|
"FlowZipWithIndexSpec.scala"
|
||
|
|
]
|