Compare commits

...

2 Commits

Author SHA1 Message Date
theoludwig be2c1746c2 chore: lint:typescript 2026-07-03 16:51:56 +02:00
theoludwig 21fbd5f963 build(deps): update latest 2026-07-03 16:45:32 +02:00
4 changed files with 339 additions and 320 deletions
+3
View File
@@ -6,5 +6,8 @@
"browser": true,
"node": true,
"shared-node-browser": true
},
"rules": {
"unicorn/prefer-number-coercion": "off"
}
}
+327 -312
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -41,14 +41,14 @@
},
"devDependencies": {
"@types/markdown-it": "14.1.2",
"@types/node": "25.9.2",
"@types/node": "26.1.0",
"eslint-config-conventions": "21.4.0",
"markdownlint": "0.40.0",
"markdownlint-cli2": "0.22.1",
"oxfmt": "0.54.0",
"oxlint": "1.69.0",
"oxlint-tsgolint": "0.23.0",
"semantic-release": "25.0.3",
"markdownlint": "0.41.0",
"markdownlint-cli2": "0.23.0",
"oxfmt": "0.57.0",
"oxlint": "1.72.0",
"oxlint-tsgolint": "0.24.0",
"semantic-release": "25.0.5",
"typescript": "6.0.3"
},
"engines": {
+2 -1
View File
@@ -29,7 +29,8 @@ const relativeLinksRule = {
filterTokens(params, "inline", (token) => {
const children = token.children ?? []
for (const child of children) {
const { type, attrs, lineNumber } = child
const { type, lineNumber } = child
const attrs = child.attrs ?? []
/** @type {string | undefined} */
let hrefSrc