From 82ddee155176f5abe2a153685c2f6208c0d0cf3b Mon Sep 17 00:00:00 2001 From: Ian Sanders Date: Mon, 1 May 2023 15:47:58 -0400 Subject: [PATCH] Fix typo in `heading-increment` rule name (#42) * Fix typo in `heading-increment` rule name * Also fix in test --- style/accessibility.json | 2 +- test/usage.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/style/accessibility.json b/style/accessibility.json index 046af54..0cfe216 100644 --- a/style/accessibility.json +++ b/style/accessibility.json @@ -4,7 +4,7 @@ "no-duplicate-header": true, "no-emphasis-as-header": true, "no-generic-link-text": true, - "no-heading-increment": true, + "heading-increment": true, "no-space-in-links": false, "ol-prefix": "ordered", "single-h1": true, diff --git a/test/usage.test.js b/test/usage.test.js index 6a0d0ea..ea36871 100644 --- a/test/usage.test.js +++ b/test/usage.test.js @@ -17,7 +17,7 @@ describe("usage", () => { "no-space-in-links": false, "single-h1": true, "no-emphasis-as-header": true, - "no-heading-increment": true, + "heading-increment": true, "no-generic-link-text": true, "ul-style": { style: "asterisk",