DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- we use many java-based libraries of course
- Due to upgrading to scala 2.13, if a Scala collection will be serialized and it contains something that might fail deserialization due to classpath issues (such as Parsers/Unparsers, layers or UDFs), it can lead to poor diagnostics. A built-in Java collection like Array should be used instead.
- code snippets from online that are being used largely unmodified can be pasted wholesale into Java files (while abiding by licensing restrictions).
...
Unless specified below, all code should following the Scala Style Guide.
No Indent-Senstive Code
In Scala 3 there is whitespace/indent sensitive syntax support. We explicitly turn this off in our build.sbt and disallow this style.
No Return Statements
See The Point of No Return if you want to understand why.
...