eslint-plugin-markdown-preferences 0.41.0 → 0.41.1
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/lib/index.js +6 -6
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -12719,7 +12719,7 @@ const rules$1 = {
|
|
|
12719
12719
|
//#endregion
|
|
12720
12720
|
//#region package.json
|
|
12721
12721
|
var name$1 = "eslint-plugin-markdown-preferences";
|
|
12722
|
-
var version$1 = "0.41.
|
|
12722
|
+
var version$1 = "0.41.1";
|
|
12723
12723
|
//#endregion
|
|
12724
12724
|
//#region src/meta.ts
|
|
12725
12725
|
var meta_exports = /* @__PURE__ */ __exportAll({
|
|
@@ -12773,7 +12773,7 @@ function customContainer() {
|
|
|
12773
12773
|
openToken = effects.enter("customContainer", { _container: true });
|
|
12774
12774
|
effects.enter("customContainerFence");
|
|
12775
12775
|
effects.enter("customContainerFenceSequence");
|
|
12776
|
-
return sequence;
|
|
12776
|
+
return sequence(code);
|
|
12777
12777
|
}
|
|
12778
12778
|
/**
|
|
12779
12779
|
* Process sequence for the opening marker of the custom container.
|
|
@@ -12847,7 +12847,7 @@ function customContainer() {
|
|
|
12847
12847
|
size = 0;
|
|
12848
12848
|
effects.enter("customContainerFence");
|
|
12849
12849
|
effects.enter("customContainerFenceSequence");
|
|
12850
|
-
return sequence;
|
|
12850
|
+
return sequence(code);
|
|
12851
12851
|
}
|
|
12852
12852
|
/**
|
|
12853
12853
|
* Process sequence for the closing marker of the custom container.
|
|
@@ -12902,10 +12902,10 @@ function customContainer() {
|
|
|
12902
12902
|
*/
|
|
12903
12903
|
function start(code) {
|
|
12904
12904
|
if (code !== codes.colon) return ok(code);
|
|
12905
|
-
return effects.attempt(customContainerCloseConstruct, () => {
|
|
12905
|
+
return effects.attempt(customContainerCloseConstruct, (code_) => {
|
|
12906
12906
|
self.containerState._closeFlow = true;
|
|
12907
|
-
return ok;
|
|
12908
|
-
}, ok);
|
|
12907
|
+
return ok(code_);
|
|
12908
|
+
}, ok)(code);
|
|
12909
12909
|
}
|
|
12910
12910
|
}
|
|
12911
12911
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-markdown-preferences",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.1",
|
|
4
4
|
"description": "ESLint plugin that enforces our markdown preferences",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"tsdown": "^0.21.0",
|
|
130
130
|
"twoslash-eslint": "^0.3.1",
|
|
131
131
|
"type-fest": "^5.0.0",
|
|
132
|
-
"typescript": "~
|
|
132
|
+
"typescript": "~6.0.0",
|
|
133
133
|
"typescript-eslint": "^8.26.1",
|
|
134
134
|
"util": "^0.12.5",
|
|
135
135
|
"vite-plugin-eslint4b": "^0.8.0",
|