@kitschpatrol/remark-config 4.4.1 → 4.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/remark-config",
3
- "version": "4.4.1",
3
+ "version": "4.4.3",
4
4
  "type": "module",
5
5
  "description": "Linting for markdown and MDX files, managed via ESLint.",
6
6
  "repository": {
@@ -55,7 +55,6 @@
55
55
  "remark-lint-no-duplicate-definitions": "^3.1.2",
56
56
  "remark-lint-no-duplicate-headings": "^3.1.2",
57
57
  "remark-lint-no-duplicate-headings-in-section": "^3.1.2",
58
- "remark-lint-no-emphasis-as-heading": "^3.1.2",
59
58
  "remark-lint-no-empty-url": "^3.1.2",
60
59
  "remark-lint-no-file-name-articles": "^2.1.2",
61
60
  "remark-lint-no-file-name-consecutive-dashes": "^2.1.2",
@@ -63,9 +62,7 @@
63
62
  "remark-lint-no-file-name-outer-dashes": "^2.1.2",
64
63
  "remark-lint-no-heading-indent": "^4.1.2",
65
64
  "remark-lint-no-heading-like-paragraph": "^3.1.2",
66
- "remark-lint-no-html": "^3.1.2",
67
65
  "remark-lint-no-literal-urls": "^3.1.2",
68
- "remark-lint-no-missing-blank-lines": "^3.1.2",
69
66
  "remark-lint-no-multiple-toplevel-headings": "^3.1.2",
70
67
  "remark-lint-no-paragraph-content-indent": "^4.1.2",
71
68
  "remark-lint-no-reference-like-url": "^3.1.2",
package/readme.md CHANGED
@@ -1,4 +1,4 @@
1
- <!--+ Warning: Content in HTML comment blocks generated by mdat on 2024-02-22 +-->
1
+ <!--+ Warning: Content inside HTML comment blocks was generated by mdat and may be overwritten. +-->
2
2
 
3
3
  <!-- header -->
4
4
 
package/remark.config.js CHANGED
@@ -17,7 +17,6 @@ import remarkLintNoDuplicateDefinedUrls from 'remark-lint-no-duplicate-defined-u
17
17
  import remarkLintNoDuplicateDefinitions from 'remark-lint-no-duplicate-definitions'
18
18
  import remarkLintNoDuplicateHeadings from 'remark-lint-no-duplicate-headings'
19
19
  import remarkLintNoDuplicateHeadingsInSection from 'remark-lint-no-duplicate-headings-in-section'
20
- import remarkLintNoEmphasisAsHeading from 'remark-lint-no-emphasis-as-heading'
21
20
  import remarkLintNoEmptyUrl from 'remark-lint-no-empty-url'
22
21
  import remarkLintNoFileNameArticles from 'remark-lint-no-file-name-articles'
23
22
  import remarkLintNoFileNameConsecutiveDashes from 'remark-lint-no-file-name-consecutive-dashes'
@@ -25,9 +24,7 @@ import remarkLintNoFileNameIrregularCharacters from 'remark-lint-no-file-name-ir
25
24
  import remarkLintNoFileNameOuterDashes from 'remark-lint-no-file-name-outer-dashes'
26
25
  import remarkLintNoHeadingIndent from 'remark-lint-no-heading-indent'
27
26
  import remarkLintNoHeadingLikeParagraph from 'remark-lint-no-heading-like-paragraph'
28
- import remarkLintNoHtml from 'remark-lint-no-html'
29
27
  import remarkLintNoLiteralUrls from 'remark-lint-no-literal-urls'
30
- import remarkLintNoMissingBlankLines from 'remark-lint-no-missing-blank-lines'
31
28
  import remarkLintNoMultipleToplevelHeadings from 'remark-lint-no-multiple-toplevel-headings'
32
29
  import remarkLintNoParagraphContentIndent from 'remark-lint-no-paragraph-content-indent'
33
30
  import remarkLintNoReferenceLikeUrl from 'remark-lint-no-reference-like-url'
@@ -114,7 +111,6 @@ export default {
114
111
  remarkLintNoDuplicateDefinitions,
115
112
  remarkLintNoDuplicateHeadings,
116
113
  remarkLintNoDuplicateHeadingsInSection,
117
- remarkLintNoEmphasisAsHeading,
118
114
  remarkLintNoEmptyUrl,
119
115
  remarkLintNoFileNameArticles,
120
116
  remarkLintNoFileNameConsecutiveDashes,
@@ -124,9 +120,7 @@ export default {
124
120
  remarkLintNoFileNameOuterDashes,
125
121
  remarkLintNoHeadingIndent,
126
122
  remarkLintNoHeadingLikeParagraph,
127
- remarkLintNoHtml,
128
123
  remarkLintNoLiteralUrls,
129
- remarkLintNoMissingBlankLines,
130
124
  remarkLintNoMultipleToplevelHeadings,
131
125
  remarkLintNoParagraphContentIndent,
132
126
  remarkLintNoReferenceLikeUrl,