diff options
| author | Shreya Keshive <[email protected]> | 2025-08-03 16:19:34 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-03 20:19:34 +0000 |
| commit | 2cdaf912ba43a79e68baa74db6086b7f41bc3b82 (patch) | |
| tree | 993d8014d47b7cb5cc0ccb06d968554cc0d1536c /eslint.config.js | |
| parent | 072d8ba2899f2601dad6d4b0333fdcb80555a7dd (diff) | |
Generate NOTICES.TXT and surface via command (#5310)
Diffstat (limited to 'eslint.config.js')
| -rw-r--r-- | eslint.config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/eslint.config.js b/eslint.config.js index 169bbd17..a1194df7 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -34,6 +34,7 @@ export default tseslint.config( 'packages/server/dist/**', 'packages/vscode-ide-companion/dist/**', 'bundle/**', + 'package/bundle/**', ], }, eslint.configs.recommended, @@ -203,6 +204,21 @@ export default tseslint.config( '@typescript-eslint/no-require-imports': 'off', }, }, + // extra settings for scripts that we run directly with node + { + files: ['packages/vscode-ide-companion/scripts/**/*.js'], + languageOptions: { + globals: { + ...globals.node, + process: 'readonly', + console: 'readonly', + }, + }, + rules: { + 'no-restricted-syntax': 'off', + '@typescript-eslint/no-require-imports': 'off', + }, + }, // Prettier config must be last prettierConfig, // extra settings for scripts that we run directly with node |
