Add a local telemetry launcher (#1015)

This commit is contained in:
Keir Mierle
2025-06-13 18:08:03 -07:00
committed by GitHub
parent 31b28ade01
commit 9954779739
5 changed files with 531 additions and 4 deletions

View File

@@ -159,10 +159,21 @@ export default tseslint.config(
files: ['./scripts/**/*.js', 'esbuild.config.js'],
languageOptions: {
globals: {
...globals.node,
process: 'readonly',
console: 'readonly',
},
},
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
},
},
// Prettier config must be last
prettierConfig,