Packages

package config

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. config
  2. ScalafixMetaconfigReaders
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ConfigRulePatches(replaceSymbols: List[ReplaceSymbol] = Nil, addGlobalImports: List[AddGlobalImport] = Nil, removeGlobalImports: List[RemoveGlobalImport] = Nil) extends Product with Serializable
  2. case class DebugConfig(printSymbols: Boolean = false) extends Product with Serializable
  3. case class FilterMatcher(includeFilters: Regex, excludeFilters: Regex) extends Product with Serializable
  4. case class LintConfig(explain: Boolean = false, ignore: FilterMatcher = FilterMatcher.matchNothing, info: FilterMatcher = FilterMatcher.matchNothing, warning: FilterMatcher = FilterMatcher.matchNothing, error: FilterMatcher = FilterMatcher.matchNothing) extends Product with Serializable
  5. case class LogContext(line: Line, file: File, enclosing: Enclosing) extends Product with Serializable
  6. type MetaParser = Parse[_ <: Tree]
  7. case class PrintStreamReporter(out: PrintStream) extends ScalafixReporter with Product with Serializable

    A ScalafixReporter that emits messages to a PrintStream.

  8. sealed trait RuleKind extends AnyRef
  9. sealed trait ScalaVersion extends AnyRef
  10. case class ScalafixConfig(version: String = Versions.version, debug: DebugConfig = DebugConfig(), groupImportsByPrefix: Boolean = true, fatalWarnings: Boolean = true, reporter: ScalafixReporter = ScalafixReporter.default, patches: ConfigRulePatches = ConfigRulePatches.default, scalaVersion: ScalaVersion = ScalaVersion.scala2, sourceScalaVersion: Option[ScalaVersion] = None, lint: LintConfig = LintConfig.default) extends Product with Serializable
  11. trait ScalafixMetaconfigReaders extends AnyRef
  12. trait ScalafixReporter extends AnyRef

Value Members

  1. implicit lazy val AddGlobalImportReader: ConfDecoder[AddGlobalImport]
    Definition Classes
    ScalafixMetaconfigReaders
  2. implicit lazy val CustomMessagePattern: ConfDecoder[v0.CustomMessage[Pattern]]
    Definition Classes
    ScalafixMetaconfigReaders
  3. implicit def EitherConfDecoder[A, B](implicit A: ConfDecoder[A], B: ConfDecoder[B]): ConfDecoder[Either[A, B]]
    Definition Classes
    ScalafixMetaconfigReaders
  4. implicit val FilterMatcherReader: ConfDecoder[FilterMatcher]
    Definition Classes
    ScalafixMetaconfigReaders
  5. implicit lazy val PatternDecoder: ConfDecoder[Pattern]
    Definition Classes
    ScalafixMetaconfigReaders
  6. implicit lazy val PrintStreamReader: ConfDecoder[PrintStream]
    Definition Classes
    ScalafixMetaconfigReaders
  7. implicit val RegexReader: ConfDecoder[Regex]
    Definition Classes
    ScalafixMetaconfigReaders
  8. implicit lazy val RemoveGlobalImportReader: ConfDecoder[RemoveGlobalImport]
    Definition Classes
    ScalafixMetaconfigReaders
  9. implicit lazy val ReplaceSymbolReader: ConfDecoder[ReplaceSymbol]
    Definition Classes
    ScalafixMetaconfigReaders
  10. lazy val SlashSeparated: Regex
    Definition Classes
    ScalafixMetaconfigReaders
  11. def castReader[From, To](ConfDecoder: ConfDecoder[From])(implicit ev: ClassTag[To]): ConfDecoder[To]
    Definition Classes
    ScalafixMetaconfigReaders
  12. implicit lazy val importeeReader: ConfDecoder[Importee]
    Definition Classes
    ScalafixMetaconfigReaders
  13. implicit lazy val importerReader: ConfDecoder[Importer]
    Definition Classes
    ScalafixMetaconfigReaders
  14. implicit val metaconfigConfDecoder: ConfDecoder[Conf]
    Definition Classes
    ScalafixMetaconfigReaders
  15. def parseReader[T](implicit parse: Parse[T]): ConfDecoder[T]
    Definition Classes
    ScalafixMetaconfigReaders
  16. implicit lazy val parseReader: ConfDecoder[MetaParser]
    Definition Classes
    ScalafixMetaconfigReaders
  17. def parseReplaceSymbol(from: String, to: String): Configured[(Global, Global)]
    Definition Classes
    ScalafixMetaconfigReaders
  18. implicit lazy val refReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  19. implicit lazy val symbolGlobalReader: ConfDecoder[Global]
    Definition Classes
    ScalafixMetaconfigReaders
  20. implicit lazy val symbolReader: ConfDecoder[Symbol]
    Definition Classes
    ScalafixMetaconfigReaders
  21. implicit lazy val termRefReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  22. object ConfigRulePatches extends Serializable
  23. object DebugConfig extends Serializable
  24. object FilterMatcher extends Serializable
  25. object LintConfig extends Serializable
  26. object LogContext extends Serializable
  27. object MetaconfigOps
  28. object PrintStreamReporter extends Serializable
  29. object ReaderUtil
  30. object RuleKind
  31. object ScalaVersion
  32. object ScalafixConfig extends Serializable
  33. object ScalafixMetaconfigReaders extends ScalafixMetaconfigReaders
  34. object ConfStrLst
    Definition Classes
    ScalafixMetaconfigReaders
  35. object UriRule
    Definition Classes
    ScalafixMetaconfigReaders
  36. object UriRuleString
    Definition Classes
    ScalafixMetaconfigReaders
  37. object ScalafixReporter

Inherited from AnyRef

Inherited from Any

Ungrouped