clear-config icon indicating copy to clipboard operation
clear-config copied to clipboard

Scala FP configuration library with a focus on runtime clarity

Results 51 clear-config issues
Sort by recently updated
recently updated
newest added

Updates [ch.epfl.scala:sbt-scalafix](https://github.com/scalacenter/sbt-scalafix) from 0.9.31 to 0.9.34. [GitHub Release Notes](https://github.com/scalacenter/sbt-scalafix/releases/tag/v0.9.34) - [Version Diff](https://github.com/scalacenter/sbt-scalafix/compare/v0.9.31...v0.9.34) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from 1.5.5 to 1.5.8. [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.5.8) - [Version Diff](https://github.com/sbt/sbt/compare/v1.5.5...v1.5.8) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates * [org.scala-lang:scala3-library](https://github.com/lampepfl/dotty) * [org.scala-lang:scala3-library_sjs1](https://github.com/lampepfl/dotty) from 3.0.1 to 3.0.2. [GitHub Release Notes](https://github.com/lampepfl/dotty/releases/tag/3.0.2) - [Version Diff](https://github.com/lampepfl/dotty/compare/3.0.1...3.0.2) - [Version Diff](https://github.com/lampepfl/dotty/compare/release-3.0.1...release-3.0.2) I'll automatically update this PR to resolve conflicts as long as you...

This seems like a good utility, but it seems far from being a complete solution. Is there plans to add migrations / upgrades / in-app mutation/setting of config values?

eg: ``` A_1=a A_2=b // becomes List("a", "b") A.1.A = 10 A.1.B = 11 A.2.A = 20 A.2.B = 21 // becomes List( X(10,11), x(20,21)) ``` `(Key,Int) => Key`? `(Key,Int)...

Updates * [org.scala-js:sbt-scalajs](https://github.com/scala-js/scala-js) * [org.scala-js:scalajs-compiler](https://github.com/scala-js/scala-js) * [org.scala-js:scalajs-library](https://github.com/scala-js/scala-js) * [org.scala-js:scalajs-library_2.13](https://github.com/scala-js/scala-js) * [org.scala-js:scalajs-test-bridge](https://github.com/scala-js/scala-js) * [org.scala-js:scalajs-test-bridge_2.13](https://github.com/scala-js/scala-js) from 1.10.1 to 1.11.0. [GitHub Release Notes](https://github.com/scala-js/scala-js/releases/tag/v1.11.0) - [Version Diff](https://github.com/scala-js/scala-js/compare/v1.10.1...v1.11.0) I'll automatically update this PR to resolve...

Updates [ch.epfl.scala:sbt-scalafix](https://github.com/scalacenter/sbt-scalafix) from 0.9.34 to 0.10.2. [GitHub Release Notes](https://github.com/scalacenter/sbt-scalafix/releases/tag/v0.10.2) - [Version Diff](https://github.com/scalacenter/sbt-scalafix/compare/v0.9.34...v0.10.2) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates * [org.scala-lang:scala3-library](https://github.com/lampepfl/dotty) * [org.scala-lang:scala3-library_sjs1](https://github.com/lampepfl/dotty) from 3.1.3 to 3.2.0. [GitHub Release Notes](https://github.com/lampepfl/dotty/releases/tag/3.2.0) - [Version Diff](https://github.com/lampepfl/dotty/compare/3.1.3...3.2.0) - [Version Diff](https://github.com/lampepfl/dotty/compare/release-3.1.3...release-3.2.0) I'll automatically update this PR to resolve conflicts as long as you...

Make this easier ```scala if (config.showUnusedConfig) logger.info("Config report\n" + report.full) else logger.info("Config report\n" + report.sources + "\n\n" + report.used) ```