Skip to content

Commit 3575c15

Browse files
committed
fix: ignore node/ directory in ESLint config
The `node/` directory contains a checkout of the Node.js source tree whose own `eslint.config.mjs` references files that don't exist in this repo (e.g. `benchmark/eslint.config_partial.mjs`). Add it to the `ignores` list so `node --run lint` doesn't fail.
1 parent f46a0bd commit 3575c15

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default defineConfig([
1313
ignores: [
1414
'www/out',
1515
'out/',
16+
'node/',
1617
'packages/node/src/api-links/__tests__/fixtures/',
1718
],
1819
},

0 commit comments

Comments
 (0)