Pattern: Missing use of raw string
Issue: -
A raw string can be used to avoid escaping only backslashes and dollars.
Example of incorrect code:
var s = 'A string with only \\ and \$';
Example of correct code:
var s = r'A string with only \ and $';