We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We change to use SonarScala plugin in SonarQube to scan our Scala code. However, the scan fails on numeric literals like 100_000L.
100_000L
This is caused by the function checkNoLetter in ScalaOnlyLexer L509.
checkNoLetter
ScalaOnlyLexer
Could the checkNoLetter function be changed to not fail on _ characters in a number since this is valid Scala code?
_
Error
scalariform.lexer.ScalaLexerException: Invalid literal number: _
Expected Scalariform should not fail on literal numbers with _ like 150_100L.
150_100L
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We change to use SonarScala plugin in SonarQube to scan our Scala code.
However, the scan fails on numeric literals like
100_000L
.This is caused by the function
checkNoLetter
inScalaOnlyLexer
L509.Could the
checkNoLetter
function be changed to not fail on_
characters in a number since this is valid Scala code?Error
Expected
Scalariform should not fail on literal numbers with
_
like150_100L
.The text was updated successfully, but these errors were encountered: