Pattern: Unnecessary string escape
Issue: -
Remove unnecessary backslashes in strings.
Example of incorrect code:
'this string contains 2 \"double quotes\" ';
"this string contains 2 \'single quotes\' ";
Example of correct code:
'this string contains 2 "double quotes" ';
"this string contains 2 'single quotes' ";