Skip to content

Commit 9e225bc

Browse files
flakey5ovflowd
authored andcommitted
fixes pt2
Signed-off-by: flakey5 <[email protected]>
1 parent 2fea3d8 commit 9e225bc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

test/doctool/test-apilinks.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ fs.readdirSync(apilinks).forEach(mustCallAtLeast((fixture) => {
3434
input,
3535
'-o',
3636
outputPath,
37-
'--no-lint',
3837
],
3938
{ encoding: 'utf-8' },
4039
);
@@ -45,7 +44,7 @@ fs.readdirSync(apilinks).forEach(mustCallAtLeast((fixture) => {
4544
for (const [k, v] of Object.entries(expectedLinks)) {
4645
assert.ok(k in actualLinks, `link not found: ${k}`);
4746
assert.ok(actualLinks[k].endsWith('/' + v),
48-
`link ${actualLinks[k]} expected to end with ${v}`);
47+
`link ${actualLinks[k]} expected to end with ${v}`);
4948
delete actualLinks[k];
5049
}
5150

vcbuild.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ robocopy /e doc\api %config%\doc\api
651651
-i doc/api/*.md ^
652652
-i lib/*.js ^
653653
-o out/doc/api/ ^
654-
--no-lint ^
655654
-c file://%~dp0\CHANGELOG.md ^
656655
-v %NODE_VERSION%
657656

@@ -669,7 +668,7 @@ for /d %%F in (test\addons\??_*) do (
669668
rd /s /q %%F
670669
)
671670
:: generate
672-
"%npx_exe%" --prefix tools/doc doc-kit generate -t addon-verify -i "%~dp0doc\api\addons.md" -o "%~dp0test\addons" --no-lint
671+
"%npx_exe%" --prefix tools/doc doc-kit generate -t addon-verify -i "%~dp0doc\api\addons.md" -o "%~dp0test\addons"
673672
if %errorlevel% neq 0 exit /b %errorlevel%
674673
:: building addons
675674
setlocal

0 commit comments

Comments
 (0)