no http props - speced/respec GitHub Wiki

no-http-props linting rule

Default: true

Warns when any URL in respecConfig uses http:// instead of https://. W3C publication rules require HTTPS.

Example violation

var respecConfig = {
  // BAD: http:// not https://
  implementationReportURI: "http://example.org/report.html",
};

How to fix

Change http:// to https:// for the flagged URL.

How to disable

var respecConfig = {
  lint: { "no-http-props": false },
};