scala-style-guide
scala-style-guide copied to clipboard
Databricks Scala Coding Style Guide
Add style guide on comments: - Each comment should be a complete sentence, starting with a capital letter and ending with punctuation. # Minor - Update comments in the style...
As the screen gets larger, it is recommended to increase to 120
The number of lines is 120
could you help me to read ASC X12 electronic data interchange (EDI) file in spark with scala. Any examples.
add follow message to section "Spacing and Indentation" make it clear that there must be a space between class declaration and curly braces - Put one space between class declaration...
There's a missing "t" in the first line of the last section : "When there is an existing well-tesed method" instead of "When there is an existing well-tested method"
Scala class definitions are often over 100 chars, so it'll be useful to give some clear guidance. The purpose of this issue is to clarify the whitespace guidelines for the...
I agree with the majority of posters in [this thread](http://stackoverflow.com/questions/7277859/scala-underscores-in-names) that private variables should not be prefixed with underscores. In the Spark codebase, the majority of private variables are not...
https://docs.scala-lang.org/style/naming-conventions.html#constants-values-variable-and-methods, val DEFAULT_PORT = 10000 val MyConstant = ... whick is better?
Apache Spark (especially what I've seen of MLlib) and the current Scala style guide differ on one item: Should multiline method and class constructor invocations be written with 1 arg...