Skip to content

Commit b464abb

Browse files
pawelniewieclaude
andcommitted
Use globals package for ESLint Node.js globals instead of manual list
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 03ce958 commit b464abb

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

package-lock.json

Lines changed: 17 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@eslint/js": "^10.0.0",
49-
"eslint": "^10.0.0"
49+
"eslint": "^10.0.0",
50+
"globals": "^17.4.0"
5051
}
5152
}

src/import_session.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ export class ImportSessionManager {
180180

181181
async #pollProgress(sessionId) {
182182
process.stdout.write("\nProcessing ");
183-
// eslint-disable-next-line no-constant-condition
184183
while (true) {
185184
await new Promise(r => setTimeout(r, 2000));
186185
const session = await this.client.getImportSession(sessionId);

0 commit comments

Comments
 (0)