From 300f54a224fbf2f08346c711c4531875b618522c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Quenneville?= Date: Fri, 31 Oct 2025 11:56:36 -0400 Subject: [PATCH] Remove Scala guides We no longer write Scala on a regular basis. This guide has not been touched in years. Let's sunset it. --- README.md | 1 - scala/README.md | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 scala/README.md diff --git a/README.md b/README.md index 24556b7b..540ccda5 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,6 @@ programming in style. - [Python](/python/) - [Ruby](/ruby/) - [Sass](/sass/) -- [Scala](/scala/) - [Shell](/shell/) - [Swift](/swift/) diff --git a/scala/README.md b/scala/README.md deleted file mode 100644 index 7e9c1f24..00000000 --- a/scala/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Scala - -- Avoid `var`. -- Avoid implicit conversions. -- Avoid wildcard imports except for implicits. -- Avoid `null` except when necessary for Java compatibility. -- Prefer a lazy effect type like `cats.effect.IO` to `scala.concurrent.Future`. -- Use [scalafmt] to automatically format as much as possible. - -[scalafmt]: https://scalameta.org/scalafmt/