This rule checks that all string literals use the same kind of quotes.
Using the parameter default (forcing single quotes):
var firstParameter = "something"; // Noncompliant
var firstParameter = 'something';
Strings that contain quotes are ignored.
let heSaid = "Then he said 'What?'." // ignored let sheSaid = '"Whatever!" she replied.' // ignored