1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Fix all no-shadow ESLint violations (#58234)

This commit is contained in:
Kevin Heis
2025-10-30 13:39:59 -07:00
committed by GitHub
parent 23c9d95cb9
commit 8e897b2b82
83 changed files with 374 additions and 366 deletions

View File

@@ -83,8 +83,8 @@ async function setupEnvironment() {
// copy the raw rst files to the temp directory and convert them
// to Markdownusing pandoc
async function rstToMarkdown(sourceDirectory: string) {
const sourceFiles = walk(sourceDirectory, {
async function rstToMarkdown(rstSourceDirectory: string) {
const sourceFiles = walk(rstSourceDirectory, {
includeBasePath: true,
globs: ['**/*.rst'],
})