This rule enables linting your code for browser compatibility.
// Targeting IE
fetch("https://exmaple.com");// Using default browser targets
fetch("https://exmaple.com");By default, feature detection like if (fetch) { ... } does not trigger a
report. Set settings.ignoreConditionalChecks to true to lint these
conditionals.