Skip to content

Commit 62e3669

Browse files
committed
Progress converting from CommonJS -> ESM
1 parent cce98aa commit 62e3669

21 files changed

+132
-167
lines changed

.eslintrc.js

-18
This file was deleted.

.eslintrc.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"root": true,
3+
"parserOptions": {
4+
"ecmaVersion": 2020
5+
},
6+
"env": {
7+
"es6": true,
8+
"node": true,
9+
"jest": true
10+
},
11+
"plugins": ["github"],
12+
"extends": ["plugin:github/recommended"],
13+
"rules": {
14+
"import/no-commonjs": "off",
15+
"filenames/match-regex": "off",
16+
"i18n-text/no-en": "off"
17+
}
18+
}

.markdownlint-cli2.cjs

-12
This file was deleted.

.markdownlint-cli2.mjs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// import init from "./index.js";
2+
3+
const options = {
4+
default: false,
5+
"heading-increment": true,
6+
"no-alt-text": true,
7+
"single-h1": true,
8+
"no-emphasis-as-heading": true,
9+
"first-line-heading": true,
10+
};
11+
export const config = options;
12+
export const customRules = ["./index.js"];

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14
1+
18

index.js

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
const _ = require("lodash");
1+
import _ from "lodash-es";
22

3-
const accessibilityRules = require("./style/accessibility.json");
4-
const base = require("./style/base.json");
5-
const gitHubCustomRules = require("./src/rules/index").rules;
6-
7-
module.exports = [...gitHubCustomRules];
3+
import * as accessibilityRules from "./style/accessibility.json";
4+
import * as base from "./style/base.json";
5+
import { githubMarkdownLint } from "./src/rules/index.js";
86

97
const offByDefault = ["no-empty-alt-text"];
8+
const foo = base;
109

11-
for (const rule of gitHubCustomRules) {
12-
const ruleName = rule.names[1];
13-
base[ruleName] = offByDefault.includes(ruleName) ? false : true;
14-
}
10+
// for (const rule of githubMarkdownLint) {
11+
// const ruleName = rule.names[1];
12+
// foo[ruleName] = offByDefault.includes(ruleName) ? false : true;
13+
// }
1514

16-
module.exports.init = function init(consumerConfig) {
15+
export function init(consumerConfig) {
1716
// left overwrites right
1817
return _.defaultsDeep(consumerConfig, accessibilityRules, base);
19-
};
18+
}

jest.config.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"transform": {
3+
}
4+
}

package-lock.json

+24-63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
{
22
"name": "@github/markdownlint-github",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "An opinionated collection of markdownlint rules used by GitHub.",
5-
"main": "index.js",
5+
"type": "module",
6+
"exports": "./index.js",
7+
"engines": {
8+
"node": ">=18"
9+
},
610
"directories": {
711
"test": "test"
812
},
913
"scripts": {
1014
"publish": "npm publish --access public --@github:registry=https://registry.npmjs.org",
11-
"test": "npm run lint && jest",
15+
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
1216
"lint": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!node_modules\" \"!docs/rules\" \"!test/example.md\" && eslint .",
1317
"lint:fix": "npm run lint -- --fix"
1418
},
1519
"dependencies": {
16-
"lodash": "^4.17.15"
20+
"lodash-es": "^4.17.15"
1721
},
1822
"devDependencies": {
1923
"eslint": "^8.22.0",
2024
"eslint-plugin-github": "^5.0.1",
2125
"jest": "^29.5.0",
2226
"markdownlint": "^0.37.3",
23-
"markdownlint-cli2": "^0.16.0"
27+
"markdownlint-cli2": "^0.17.0"
2428
},
2529
"repository": {
2630
"type": "git",
+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/* Downcase and strip extra whitespaces and punctuation */
2-
function stripAndDowncaseText(text) {
2+
export function stripAndDowncaseText(text) {
33
return text
44
.toLowerCase()
55
.replace(/[.,/#!$%^&*;:{}=\-_`~()]/g, "")
66
.replace(/\s+/g, " ")
77
.trim();
88
}
9-
10-
module.exports = { stripAndDowncaseText };

src/rules/index.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
module.exports = {
2-
rules: [
3-
require("./no-default-alt-text"),
4-
require("./no-generic-link-text"),
5-
require("./no-empty-alt-text"),
6-
],
7-
};
1+
import { noEmptyStringAltRule } from "./no-empty-alt-text.js";
2+
import { noGenericLinkTextRule } from "./no-generic-link-text.js";
3+
import { altTextRule } from "./no-default-alt-text.js";
4+
5+
export const githubMarkdownLint = [
6+
altTextRule,
7+
noGenericLinkTextRule,
8+
noEmptyStringAltRule,
9+
];

src/rules/no-default-alt-text.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ const combinedRegex = `(${[defaultScreenshotRegex, imageRegex].join("|")})`;
1414
const markdownAltRegex = new RegExp(`!\\[${combinedRegex}\\]\\(.*\\)`, "gid");
1515
const htmlAltRegex = new RegExp(`alt=["']${combinedRegex}["']`, "gid");
1616

17-
module.exports = {
17+
export const altTextRule = {
1818
names: ["GH001", "no-default-alt-text"],
1919
description: "Images should have meaningful alternative text (alt text)",
2020
information: new URL(
21-
"https://github.com/github/markdownlint-github/blob/main/docs/rules/GH001-no-default-alt-text.md",
21+
"https://github.com/github/markdownlint-github/blob/main/docs/rules/GH001-no-default-alt-text.md"
2222
),
2323
tags: ["accessibility", "images"],
2424
function: function GH001(params, onError) {
@@ -30,12 +30,12 @@ module.exports = {
3030
token.content.includes("<img") &&
3131
token.children.some((child) => child.type === "html_inline"))
3232
);
33-
},
33+
}
3434
);
3535
const inlineImages = params.parsers.markdownit.tokens.filter(
3636
(token) =>
3737
token.type === "inline" &&
38-
token.children.some((child) => child.type === "image"),
38+
token.children.some((child) => child.type === "image")
3939
);
4040

4141
for (const token of [...htmlTagsWithImages, ...inlineImages]) {

src/rules/no-empty-alt-text.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
module.exports = {
1+
export const noEmptyStringAltRule = {
22
names: ["GH003", "no-empty-alt-text"],
33
description: "Please provide an alternative text for the image.",
44
information: new URL(
5-
"https://github.com/github/markdownlint-github/blob/main/docs/rules/GH003-no-empty-alt-text.md",
5+
"https://github.com/github/markdownlint-github/blob/main/docs/rules/GH003-no-empty-alt-text.md"
66
),
77
tags: ["accessibility", "images"],
88
function: function GH003(params, onError) {
@@ -14,7 +14,7 @@ module.exports = {
1414
token.content.includes("<img") &&
1515
token.children.some((child) => child.type === "html_inline"))
1616
);
17-
},
17+
}
1818
);
1919

2020
const ImageRegex = new RegExp(/<img(.*?)>/, "gid");

0 commit comments

Comments
 (0)