Skip to content

Commit ed5253c

Browse files
committed
fix: resolve ESLint errors
- Use node: prefix for built-in modules (assert, fs, child_process) - Remove structuredClone availability check (always available in Node.js 20+) - Add Buffer and structuredClone to ESLint globals - Fix quote style consistency - All ESLint checks now pass
1 parent 88a5a80 commit ed5253c

File tree

5 files changed

+493
-497
lines changed

5 files changed

+493
-497
lines changed

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ module.exports = {
1010
},
1111
globals: {
1212
process: 'readonly',
13+
Buffer: 'readonly',
14+
structuredClone: 'readonly',
1315
},
1416
rules: {
1517
'no-extend-native': [ 'error', { exceptions: [ 'Array' ] } ],

0 commit comments

Comments
 (0)