π Prefer HTTPS over HTTP.
πΌπ« This rule is enabled in the β
recommended config. This rule is disabled in the βοΈ unopinionated config.
π§ This rule is automatically fixable by the --fix CLI option.
Using HTTPS avoids sending URLs to public resources over an insecure protocol.
This rule checks source text, including strings, template literals, JSX, comments, and non-JavaScript files when they are linted with ESLint language plugins such as @eslint/css, @eslint/json, @eslint/markdown, and html-eslint.
URLs without a public-looking top-level domain are ignored. For example, http://localhost, http://example, and http://127.0.0.1 are allowed.
Some well-known XML identifiers are also ignored because rewriting them to https: would change their meaning.
Type: Array<string | RegExp>
Default: []
Specify URLs or regular expressions to ignore. Strings must start with http:// and match the complete recognized URL exactly. Regular expressions match the same text, so use ^ and $ for a full match. They are tested from lastIndex = 0, without carrying state between URLs.
'unicorn/prefer-https': [
'error',
{
ignore: [
'http://example.com/identifier/value',
/^http:\/\/schemas\.example\.com\//v,
],
},
]// β
const url = 'http://sindresorhus.com';
// β
const url = 'https://sindresorhus.com';// β
// See http://sindresorhus.com
// β
// See https://sindresorhus.com// β
const element = <a href="http://sindresorhus.com">http://sindresorhus.com</a>;
// β
const element = <a href="https://sindresorhus.com">https://sindresorhus.com</a>;