Skip to content

Instantly share code, notes, and snippets.

@wogan
Created July 13, 2016 18:52
Show Gist options
  • Save wogan/423ba843ee4d08d8f7edfea4776b9f51 to your computer and use it in GitHub Desktop.
Save wogan/423ba843ee4d08d8f7edfea4776b9f51 to your computer and use it in GitHub Desktop.
IntelliJ scala plugin incorrectly formatting method bodies with preceeding comments.
class FormatTest {
def firstMethod: String =
"body"
/**
* Returns a string "body"
*
* @return "body"
*/
def secondMethod: String =
"body"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment