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
The following code causes an operator_usage_whitespace violation, and I do not think it should.
operator_usage_whitespace
private var doubleValue = -9e-11
The text was updated successfully, but these errors were encountered:
You're right, it shouldn't... Thankfully, this should be pretty easy to fix, as we have this information from the syntax map:
$ sourcekitten syntax --text "let a = -9e-11" [ { "type" : "source.lang.swift.syntaxtype.keyword", "offset" : 0, "length" : 3 }, { "type" : "source.lang.swift.syntaxtype.identifier", "offset" : 4, "length" : 1 }, { "type" : "source.lang.swift.syntaxtype.number", "offset" : 8, "length" : 6 } ]
Sorry, something went wrong.
No branches or pull requests
The following code causes an
operator_usage_whitespace
violation, and I do not think it should.The text was updated successfully, but these errors were encountered: