File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ The following options are available on this rule:
3434
3535* ` required: Array<string> ` - when specified, fenced code blocks must use one of the languages specified in this array.
3636
37- Examples of incorrect code when configured as ` "fenced-code-language: ["error", { required: ["js"]}] ` :
37+ Examples of incorrect code when configured as ` "fenced-code-language" : ["error", { required: ["js"] }] ` :
3838
3939```` markdown
4040```javascript
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ It can be difficult to keep track of the correct heading levels in a long docume
88
99## Rule Details
1010
11- This rule warns when it finds a heading that is more than on level higher than the preceding heading.
11+ This rule warns when it finds a heading that is more than one level higher than the preceding heading.
1212
1313Examples of incorrect code:
1414
Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ Hello <b>world!</b>
2222
2323The following options are available on this rule:
2424
25- * ` allowed: Array<string> ` - when specified, HTML tags are allowed only if they match one of the tags in this array..
25+ * ` allowed: Array<string> ` - when specified, HTML tags are allowed only if they match one of the tags in this array.
2626
27- Examples of incorrect code when configured as ` "no-html: ["error", { allowed: ["b"]}] ` :
27+ Examples of incorrect code when configured as ` "no-html" : ["error", { allowed: ["b"] }] ` :
2828
2929``` markdown
3030# Heading 1
3131
3232Hello <em>world!</em>
3333```
3434
35- Examples of correct code when configured as ` "no-html: ["error", { allowed: ["b"]}] ` :
35+ Examples of correct code when configured as ` "no-html" : ["error", { allowed: ["b"] }] ` :
3636
3737``` markdown
3838# Heading 1
You can’t perform that action at this time.
0 commit comments