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. case class DisableConfig(symbols: List[DisabledSymbol] = Nil, ifSynthetic: List[DisabledSymbol] = Nil, unlessInside: List[UnlessInsideBlock] = Nil) extends Product with Serializable
  4. case class DisableSyntaxConfig(keywords: Set[DisabledKeyword] = Set(), noSemicolons: Boolean = false, noTabs: Boolean = false, noXml: Boolean = false, noCovariantTypes: Boolean = false, noContravariantTypes: Boolean = false, noDefaultArgs: Boolean = false, noValInAbstract: Boolean = false, noImplicitObject: Boolean = false, noImplicitConversion: Boolean = false, noFinalVal: Boolean = false, noFinalize: Boolean = false, noValPatterns: Boolean = false, regex: List[config.CustomMessage[Pattern]] = Nil) extends Product with Serializable
  5. case class DisabledKeyword(keyword: String) extends Product with Serializable
  6. case class DisabledSymbol(symbol: Option[Global], message: Option[String], id: Option[String], regex: Option[FilterMatcher]) extends Product with Serializable
  7. case class ExplicitResultTypesConfig(memberKind: List[MemberKind] = Nil, memberVisibility: List[MemberVisibility] = Nil, skipSimpleDefinitions: Boolean = true, skipLocalImplicits: Boolean = true, unsafeShortenNames: Boolean = false, fatalWarnings: Boolean = false) extends Product with Serializable
  8. case class FilterMatcher(includeFilters: Regex, excludeFilters: Regex) extends Product with Serializable
  9. class LazySemanticdbIndex extends Function[RuleKind, Option[v0.SemanticdbIndex]]
  10. 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
  11. case class LogContext(line: Line, file: File, enclosing: Enclosing) extends Product with Serializable
  12. sealed trait MemberKind extends AnyRef
  13. sealed trait MemberVisibility extends AnyRef
  14. type MetaParser = Parse[_ <: Tree]
  15. final case class MissingFinalConfig(noLeakingSealed: Boolean = true, noLeakingCaseClass: Boolean = true) extends Product with Serializable
  16. case class NoInferConfig(symbols: List[Global] = Nil) extends Product with Serializable
  17. sealed abstract class OutputFormat extends AnyRef
  18. case class ParserConfig(trailingCommas: Boolean = true, inlineKeyword: Boolean = false) extends Product with Serializable
  19. case class PrintStreamReporter(outStream: PrintStream, minSeverity: util.Severity, filter: FilterMatcher, includeLoggerName: Boolean, format: OutputFormat) extends ScalafixReporter with Product with Serializable

    A ScalafixReporter that emits messages to a PrintStream.

  20. sealed trait RuleKind extends AnyRef
  21. case class ScalafixConfig(parser: ParserConfig = ParserConfig(), debug: DebugConfig = DebugConfig(), groupImportsByPrefix: Boolean = true, fatalWarnings: Boolean = true, reporter: ScalafixReporter = ScalafixReporter.default, patches: ConfigRulePatches = ConfigRulePatches.default, dialect: Dialect = ScalafixConfig.DefaultDialect, lint: LintConfig = LintConfig.default) extends Product with Serializable
  22. trait ScalafixMetaconfigReaders extends AnyRef
  23. trait ScalafixReporter extends AnyRef
  24. case class UnlessInsideBlock(safeBlock: DisabledSymbol, symbols: List[DisabledSymbol]) extends Product with Serializable

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 val FilterMatcherReader: ConfDecoder[FilterMatcher]
    Definition Classes
    ScalafixMetaconfigReaders
  4. implicit lazy val PatternDecoder: ConfDecoder[Pattern]
    Definition Classes
    ScalafixMetaconfigReaders
  5. implicit lazy val PrintStreamReader: ConfDecoder[PrintStream]
    Definition Classes
    ScalafixMetaconfigReaders
  6. implicit val RegexReader: ConfDecoder[Regex]
    Definition Classes
    ScalafixMetaconfigReaders
  7. implicit lazy val RemoveGlobalImportReader: ConfDecoder[RemoveGlobalImport]
    Definition Classes
    ScalafixMetaconfigReaders
  8. implicit lazy val ReplaceSymbolReader: ConfDecoder[ReplaceSymbol]
    Definition Classes
    ScalafixMetaconfigReaders
  9. lazy val SlashSeparated: Regex
    Definition Classes
    ScalafixMetaconfigReaders
  10. def baseRuleDecoders(index: LazySemanticdbIndex): ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  11. def baseSyntacticRuleDecoder: ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  12. def castReader[From, To](ConfDecoder: ConfDecoder[From])(implicit ev: ClassTag[To]): ConfDecoder[To]
    Definition Classes
    ScalafixMetaconfigReaders
  13. def classloadRule(index: LazySemanticdbIndex): (Class[_]) ⇒ Seq[v0.SemanticdbIndex]
    Definition Classes
    ScalafixMetaconfigReaders
  14. def classloadRuleDecoder(index: LazySemanticdbIndex): ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  15. def configFromInput(input: Input, index: LazySemanticdbIndex, extraRules: List[String])(implicit decoder: ConfDecoder[v0.Rule]): Configured[(v0.Rule, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  16. def defaultRuleDecoder(getSemanticdbIndex: LazySemanticdbIndex): ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  17. implicit lazy val dialectReader: ConfDecoder[Dialect]
    Definition Classes
    ScalafixMetaconfigReaders
  18. implicit lazy val importeeReader: ConfDecoder[Importee]
    Definition Classes
    ScalafixMetaconfigReaders
  19. implicit lazy val importerReader: ConfDecoder[Importer]
    Definition Classes
    ScalafixMetaconfigReaders
  20. implicit val metaconfigConfDecoder: ConfDecoder[Conf]
    Definition Classes
    ScalafixMetaconfigReaders
  21. def parseReader[T](implicit parse: Parse[T]): ConfDecoder[T]
    Definition Classes
    ScalafixMetaconfigReaders
  22. implicit lazy val parseReader: ConfDecoder[MetaParser]
    Definition Classes
    ScalafixMetaconfigReaders
  23. def parseReplaceSymbol(from: String, to: String): Configured[(Global, Global)]
    Definition Classes
    ScalafixMetaconfigReaders
  24. implicit lazy val refReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  25. def ruleConfDecoder(singleRuleDecoder: ConfDecoder[v0.Rule]): ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  26. def ruleConfDecoderSyntactic(singleRuleDecoder: ConfDecoder[v0.Rule]): ConfDecoder[v0.Rule]
    Definition Classes
    ScalafixMetaconfigReaders
  27. def scalafixConfigConfDecoder(ruleDecoder: ConfDecoder[v0.Rule], extraRules: List[String] = Nil): ConfDecoder[(v0.Rule, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  28. def scalafixConfigEmptyRuleReader: ConfDecoder[(Conf, ScalafixConfig)]
    Definition Classes
    ScalafixMetaconfigReaders
  29. implicit lazy val symbolGlobalReader: ConfDecoder[Global]
    Definition Classes
    ScalafixMetaconfigReaders
  30. implicit lazy val symbolReader: ConfDecoder[Symbol]
    Definition Classes
    ScalafixMetaconfigReaders
  31. implicit lazy val termRefReader: ConfDecoder[Ref]
    Definition Classes
    ScalafixMetaconfigReaders
  32. object ConfigRulePatches extends Serializable
  33. object DebugConfig extends Serializable
  34. object DisableConfig extends Serializable
  35. object DisableSyntaxConfig extends Serializable
  36. object DisabledKeyword extends Serializable
  37. object DisabledSymbol extends Serializable
  38. object ExplicitResultTypesConfig extends Serializable
  39. object FilterMatcher extends Serializable
  40. object Keyword
  41. object LazySemanticdbIndex
  42. object LintConfig extends Serializable
  43. object LogContext extends Serializable
  44. object MemberKind
  45. object MemberVisibility
  46. object MetaconfigParser
  47. object MetaconfigPendingUpstream
  48. object MissingFinalConfig extends Serializable
  49. object NoInferConfig extends Serializable
  50. object OutputFormat
  51. object ParserConfig extends Serializable
  52. object ReaderUtil
  53. object RuleKind
  54. object ScalafixConfig extends Serializable
  55. object ScalafixMetaconfigReaders extends ScalafixMetaconfigReaders
  56. object ConfStrLst
    Definition Classes
    ScalafixMetaconfigReaders
  57. object UriRule
    Definition Classes
    ScalafixMetaconfigReaders
  58. object UriRuleString
    Definition Classes
    ScalafixMetaconfigReaders
  59. object ScalafixReporter
  60. object UnlessInsideBlock extends Serializable

Inherited from ScalafixMetaconfigReaders

Inherited from AnyRef

Inherited from Any

Ungrouped