package config

Linear Supertypes
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. All

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. final case class DisableConfig (symbols: List[org.langmeta.Symbol]) extends Product with Serializable
  4. case class ExplicitResultTypesConfig (memberKind: List[MemberKind] = Nil, memberVisibility: List[MemberVisibility] = Nil, skipSimpleDefinitions: Boolean = true, unsafeShortenNames: Boolean = false) extends Product with Serializable
  5. case class FilterMatcher (includeFilters: Regex, excludeFilters: Regex) extends Product with Serializable
  6. class LazySemanticdbIndex extends Function[RuleKind, Option[SemanticdbIndex]]
  7. case class LintConfig (reporter: ScalafixReporter = ScalafixReporter.default, explain: Boolean = false, ignore: FilterMatcher = FilterMatcher.matchNothing, info: FilterMatcher = FilterMatcher.matchNothing, warning: FilterMatcher = FilterMatcher.matchNothing, error: FilterMatcher = FilterMatcher.matchNothing) extends Product with Serializable
  8. case class LogContext (line: Line, file: File, enclosing: Enclosing) extends Product with Serializable
  9. sealed trait MemberKind extends AnyRef
  10. sealed trait MemberVisibility extends AnyRef
  11. type MetaParser = Parse[_ <: Tree]
  12. case class PrintStreamReporter (outStream: PrintStream, minSeverity: Severity, filter: FilterMatcher, includeLoggerName: Boolean) extends ScalafixReporter with Product with Serializable

    A ScalafixReporter that emits messages to a PrintStream.

  13. sealed trait RuleKind extends AnyRef
  14. case class ScalafixConfig (parser: Parse[_ <: Tree] = Parse.parseSource, debug: DebugConfig = DebugConfig(), groupImportsByPrefix: Boolean = true, fatalWarnings: Boolean = true, reporter: ScalafixReporter = ScalafixReporter.default, patches: ConfigRulePatches = ConfigRulePatches.default, dialect: Dialect = Scala211, lint: LintConfig = LintConfig.default) extends Product with Serializable
  15. trait ScalafixMetaconfigReaders extends AnyRef
  16. trait ScalafixReporter extends AnyRef

Value Members

  1. implicit lazy val AddGlobalImportReader: ConfDecoder[AddGlobalImport]
    Definition Classes
    ScalafixMetaconfigReaders
  2. implicit val FilterMatcherReader: ConfDecoder[FilterMatcher]
    Definition Classes
    ScalafixMetaconfigReaders
  3. implicit lazy val PrintStreamReader: ConfDecoder[PrintStream]
    Definition Classes
    ScalafixMetaconfigReaders
  4. implicit val RegexReader: ConfDecoder[Regex]
    Definition Classes
    ScalafixMetaconfigReaders
  5. implicit lazy val RemoveGlobalImportReader: ConfDecoder[RemoveGlobalImport]
    Definition Classes
    ScalafixMetaconfigReaders
  6. implicit lazy val ReplaceSymbolReader: ConfDecoder[ReplaceSymbol]
    Definition Classes
    ScalafixMetaconfigReaders
  7. def baseRuleDecoders(index: LazySemanticdbIndex): ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  8. def baseSyntacticRuleDecoder: ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  9. def castReader[From, To](ConfDecoder: ConfDecoder[From])(implicit ev: ClassTag[To]): ConfDecoder[To]
    Definition Classes
    ScalafixMetaconfigReaders
  10. def classloadRule(index: LazySemanticdbIndex): (Class[_]) ⇒ Seq[SemanticdbIndex]
    Definition Classes
    ScalafixMetaconfigReaders
  11. def classloadRuleDecoder(index: LazySemanticdbIndex): ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  12. def configFromInput(input: scala.meta.Input, index: LazySemanticdbIndex, extraRules: List[String])(implicit decoder: ConfDecoder[Rule]): Configured[(Rule, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  13. def defaultRuleDecoder(getSemanticdbIndex: LazySemanticdbIndex): ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  14. implicit lazy val dialectReader: ConfDecoder[Dialect]
    Definition Classes
    ScalafixMetaconfigReaders
  15. implicit lazy val importeeReader: ConfDecoder[Importee]
    Definition Classes
    ScalafixMetaconfigReaders
  16. implicit lazy val importerReader: ConfDecoder[Importer]
    Definition Classes
    ScalafixMetaconfigReaders
  17. implicit val metaconfigConfDecoder: ConfDecoder[Conf]
    Definition Classes
    ScalafixMetaconfigReaders
  18. def parseReader[T](implicit parse: Parse[T]): ConfDecoder[T]
    Definition Classes
    ScalafixMetaconfigReaders
  19. implicit lazy val parseReader: ConfDecoder[MetaParser]
    Definition Classes
    ScalafixMetaconfigReaders
  20. def parseReplaceSymbol(from: String, to: String): Configured[(Global, Global)]
    Definition Classes
    ScalafixMetaconfigReaders
  21. implicit lazy val refReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  22. def ruleConfDecoder(singleRuleDecoder: ConfDecoder[Rule]): ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  23. def ruleConfDecoderSyntactic(singleRuleDecoder: ConfDecoder[Rule]): ConfDecoder[Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  24. def scalafixConfigConfDecoder(ruleDecoder: ConfDecoder[Rule], extraRules: List[String] = Nil): ConfDecoder[(Rule, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  25. def scalafixConfigEmptyRuleReader: ConfDecoder[(Conf, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  26. implicit lazy val symbolGlobalReader: ConfDecoder[Global]
    Definition Classes
    ScalafixMetaconfigReaders
  27. implicit lazy val symbolReader: ConfDecoder[scala.meta.semanticdb.Symbol]
    Definition Classes
    ScalafixMetaconfigReaders
  28. implicit lazy val termRefReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  29. object Class2Hocon
  30. object ConfigRulePatches extends Serializable
  31. object DisableConfig extends Serializable
  32. object DisableConfigDecoder
  33. object ExplicitResultTypesConfig extends Serializable
  34. object FilterMatcher extends Serializable
  35. object LazySemanticdbIndex
  36. object LintConfig extends Serializable
  37. object LogContext extends Serializable
  38. object MemberKind
  39. object MemberVisibility
  40. object MetaconfigParser
  41. object MetaconfigPendingUpstream
  42. object ReaderUtil
  43. object RuleKind
  44. object ScalafixConfig extends Serializable
  45. object ScalafixMetaconfigReaders extends ScalafixMetaconfigReaders
  46. object ConfStrLst
    Definition Classes
    ScalafixMetaconfigReaders
  47. object UriRule
    Definition Classes
    ScalafixMetaconfigReaders
  48. object UriRuleString
    Definition Classes
    ScalafixMetaconfigReaders
  49. object ScalafixReporter

Inherited from ScalafixMetaconfigReaders

Inherited from AnyRef

Inherited from Any

Ungrouped