File tree Expand file tree Collapse file tree 4 files changed +50
-310
lines changed
packages/eslint-plugin-docs Expand file tree Collapse file tree 4 files changed +50
-310
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ export const improveHtmlAccessibility = (
299299 }
300300
301301 let previousSibling = item . previousElementSibling ;
302- let listContainer : HTMLElement | null = null ;
302+ let listContainer : HTMLElement | null ;
303303
304304 if ( previousSibling ?. tagName . toLowerCase ( ) === 'ul' ) {
305305 listContainer = previousSibling as HTMLElement ;
@@ -409,7 +409,7 @@ export const addMediaFilesToZip = async (
409409
410410 // Only download same-origin resources (internal media like /media/...).
411411 // External URLs keep their original src and are not included in the ZIP
412- let url : URL | null = null ;
412+ let url : URL | null ;
413413 try {
414414 url = new URL ( src , mediaUrl ) ;
415415 } catch {
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ let isInitialized = false;
1010
1111// Initialize i18next with the base translations only once
1212if ( ! isInitialized && ! i18next . isInitialized ) {
13+ // eslint-disable-next-line no-useless-assignment
1314 isInitialized = true ;
1415
1516 i18next
Original file line number Diff line number Diff line change 1414 "lint" : " eslint"
1515 },
1616 "peerDependencies" : {
17- "eslint" : " >=9 .0.0 "
17+ "eslint" : " >=10 .0.1 "
1818 },
1919 "dependencies" : {
20+ "@eslint/js" : " 10.0.1" ,
2021 "@next/eslint-plugin-next" : " 15.5.9" ,
2122 "@tanstack/eslint-plugin-query" : " 5.91.4" ,
22- "@typescript-eslint/eslint-plugin" : " 8.55.0" ,
23- "@typescript-eslint/parser" : " 8.55.0" ,
23+ "@typescript-eslint/eslint-plugin" : " 8.56.0" ,
24+ "@typescript-eslint/parser" : " 8.56.0" ,
25+ "@typescript-eslint/utils" : " 8.56.0" ,
2426 "@vitest/eslint-plugin" : " 1.6.9" ,
2527 "eslint-config-next" : " 15.5.9" ,
2628 "eslint-config-prettier" : " 10.1.8" ,
You can’t perform that action at this time.
0 commit comments