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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Some strings in text formats are using single quote strings 'foo' instead of "foo".
'foo'
"foo"
The character " is allowed in single quote strings.
"
In Javascript, \' is handled the same was as \" in double quote strings.
\'
\"
This could be added as a rule t'? or t'! with a single quote appearing after the "t". This rule could allow both single and double quote strings.
t'?
t'!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some strings in text formats are using single quote strings
'foo'
instead of"foo"
.The character
"
is allowed in single quote strings.In Javascript,
\'
is handled the same was as\"
in double quote strings.This could be added as a rule
t'?
ort'!
with a single quote appearing after the "t". This rule could allow both single and double quote strings.The text was updated successfully, but these errors were encountered: