We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just a setting so quoting style can be unified across a codebase.
e.g.
for the three strings abc, a'c, a"c
abc
a'c
a"c
prefer_single_quotes -> 'abc', "a'c", 'a"c' prefer_double_quotes -> "abc", "a'c", 'a"c'
prefer_single_quotes
'abc'
"a'c"
'a"c'
prefer_double_quotes
"abc"
force_single_quotes -> 'abc', 'a\'c', 'a"c' force_double_quotes -> "abc", "a'c", "a\"c"
force_single_quotes
'a\'c'
force_double_quotes
"a\"c"