eslint-plugin-markdown-preferences 0.30.0 → 0.31.0

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/README.md CHANGED
@@ -193,8 +193,8 @@ The rules with the following 💄 are included in the `standard` config.
193
193
  | Rule ID | Description | Fixable | Config |
194
194
  | :---------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------- | :-----: | :----: |
195
195
  | [markdown-preferences/blockquote-marker-alignment](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/blockquote-marker-alignment.html) | enforce consistent alignment of blockquote markers | 🔧 | ⭐💄 |
196
- | [markdown-preferences/code-fence-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-spacing.html) | require or disallow spacing between opening code fence and language identifier | 🔧 | |
197
- | [markdown-preferences/custom-container-marker-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/custom-container-marker-spacing.html) | require or disallow spacing between opening custom container marker and info | 🔧 | |
196
+ | [markdown-preferences/code-fence-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-spacing.html) | require or disallow spacing between opening code fence and language identifier | 🔧 | 💄 |
197
+ | [markdown-preferences/custom-container-marker-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/custom-container-marker-spacing.html) | require or disallow spacing between opening custom container marker and info | 🔧 | 💄 |
198
198
  | [markdown-preferences/indent](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/indent.html) | enforce consistent indentation in Markdown files | 🔧 | 💄 |
199
199
  | [markdown-preferences/link-bracket-newline](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-newline.html) | enforce linebreaks after opening and before closing link brackets | 🔧 | 💄 |
200
200
  | [markdown-preferences/link-bracket-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-spacing.html) | enforce consistent spacing inside link brackets | 🔧 | 💄 |
package/lib/index.d.ts CHANGED
@@ -532,7 +532,7 @@ declare namespace meta_d_exports {
532
532
  export { name, version };
533
533
  }
534
534
  declare const name: "eslint-plugin-markdown-preferences";
535
- declare const version: "0.30.0";
535
+ declare const version: "0.31.0";
536
536
  //#endregion
537
537
  //#region src/language/ast-types.d.ts
538
538
  type Node = mdast.Node;
package/lib/index.js CHANGED
@@ -1286,7 +1286,7 @@ var code_fence_spacing_default = createRule("code-fence-spacing", {
1286
1286
  type: "layout",
1287
1287
  docs: {
1288
1288
  description: "require or disallow spacing between opening code fence and language identifier",
1289
- categories: [],
1289
+ categories: ["standard"],
1290
1290
  listCategory: "Whitespace"
1291
1291
  },
1292
1292
  fixable: "whitespace",
@@ -1456,7 +1456,7 @@ var custom_container_marker_spacing_default = createRule("custom-container-marke
1456
1456
  type: "layout",
1457
1457
  docs: {
1458
1458
  description: "require or disallow spacing between opening custom container marker and info",
1459
- categories: [],
1459
+ categories: ["standard"],
1460
1460
  listCategory: "Whitespace"
1461
1461
  },
1462
1462
  fixable: "whitespace",
@@ -11757,7 +11757,9 @@ const rules$2 = {
11757
11757
  "markdown-preferences/blockquote-marker-alignment": "error",
11758
11758
  "markdown-preferences/bullet-list-marker-style": "error",
11759
11759
  "markdown-preferences/code-fence-length": "error",
11760
+ "markdown-preferences/code-fence-spacing": "error",
11760
11761
  "markdown-preferences/code-fence-style": "error",
11762
+ "markdown-preferences/custom-container-marker-spacing": "error",
11761
11763
  "markdown-preferences/emphasis-delimiters-style": "error",
11762
11764
  "markdown-preferences/hard-linebreak-style": "error",
11763
11765
  "markdown-preferences/indent": "error",
@@ -11801,7 +11803,7 @@ var meta_exports = /* @__PURE__ */ __export({
11801
11803
  version: () => version
11802
11804
  });
11803
11805
  const name = "eslint-plugin-markdown-preferences";
11804
- const version = "0.30.0";
11806
+ const version = "0.31.0";
11805
11807
 
11806
11808
  //#endregion
11807
11809
  //#region src/language/extensions/micromark-custom-container.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-markdown-preferences",
3
- "version": "0.30.0",
3
+ "version": "0.31.0",
4
4
  "description": "ESLint plugin that enforces our markdown preferences",
5
5
  "type": "module",
6
6
  "exports": {