Skip to content
Marcos Caceres edited this page Mar 27, 2026 · 9 revisions

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 },
};

Guides

Configuration options

W3C Configuration options

Linting rules

Internal properties

Handled by ReSpec for you.

Special <section> IDs

HTML elements

Custom Elements

HTML attributes

CSS Classes

Special properties

Clone this wiki locally