Merge pull request #32516 from backstage/freben/nodecolon

Add a rule for the use of `node:` prefix on native imports
This commit is contained in:
Fredrik Adelöw
2026-01-27 14:17:14 +01:00
committed by GitHub
444 changed files with 749 additions and 634 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env node
const fs = require('fs');
const path = require('path');
const fs = require('node:fs');
const path = require('node:path');
const prNumber = process.argv[2];
const description = process.argv.slice(3).join(' ');