@hexadrop/eslint-config 0.0.2-beta.0 → 0.1.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/dist/index.cjs +5 -4
- package/dist/index.d.cts +219 -171
- package/dist/index.d.ts +219 -171
- package/dist/index.js +3 -2
- package/package.json +21 -21
package/dist/index.cjs
CHANGED
|
@@ -28,12 +28,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
29
|
|
|
30
30
|
// src/index.ts
|
|
31
|
-
var
|
|
32
|
-
__export(
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
33
|
combine: () => combine,
|
|
34
34
|
default: () => hexadrop
|
|
35
35
|
});
|
|
36
|
-
module.exports = __toCommonJS(
|
|
36
|
+
module.exports = __toCommonJS(index_exports);
|
|
37
37
|
|
|
38
38
|
// src/factory.ts
|
|
39
39
|
var import_eslint_flat_config_utils = require("eslint-flat-config-utils");
|
|
@@ -366,7 +366,7 @@ async function markdown(options) {
|
|
|
366
366
|
if (!markdown2) {
|
|
367
367
|
return [];
|
|
368
368
|
}
|
|
369
|
-
const pluginMarkdown = await interopDefault(import("eslint
|
|
369
|
+
const pluginMarkdown = await interopDefault(import("@eslint/markdown"));
|
|
370
370
|
const processors = pluginMarkdown.processors;
|
|
371
371
|
const processor = processors?.["markdown"];
|
|
372
372
|
return [
|
|
@@ -391,6 +391,7 @@ async function markdown(options) {
|
|
|
391
391
|
files: GLOB_MARKDOWN,
|
|
392
392
|
languageOptions: {
|
|
393
393
|
parser: {
|
|
394
|
+
meta: import_eslint_parser_plain.meta,
|
|
394
395
|
parseForESLint: import_eslint_parser_plain.parseForESLint
|
|
395
396
|
}
|
|
396
397
|
},
|