Disallows implicit type conversion.
Type: Array
Values: Array of quoted types
"disallowImplicitTypeConversion": ["numeric", "boolean", "binary", "string"]
x = Boolean(y);
x = Number(y);
x = String(y);
x = s.indexOf('.') !== -1;
x = !!y;
x = +y;
x = '' + y;
x = ~s.indexOf('.');