From c0e7da42b2f25cb8c95ddf4f3402c7aaa6b13dc3 Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Fri, 13 Feb 2026 10:27:40 -0800 Subject: [PATCH] Remove unnecessary eslint config file (#19015) --- .../vscode-ide-companion/eslint.config.mjs | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 packages/vscode-ide-companion/eslint.config.mjs diff --git a/packages/vscode-ide-companion/eslint.config.mjs b/packages/vscode-ide-companion/eslint.config.mjs deleted file mode 100644 index 19c1cc983a..0000000000 --- a/packages/vscode-ide-companion/eslint.config.mjs +++ /dev/null @@ -1,50 +0,0 @@ -/** - * @license - * Copyright 2025 Google LLC - * SPDX-License-Identifier: Apache-2.0 - */ - -import typescriptEslint from '@typescript-eslint/eslint-plugin'; -import tsParser from '@typescript-eslint/parser'; - -export default [ - { - files: ['**/*.ts'], - plugins: { - '@typescript-eslint': typescriptEslint, - }, - - languageOptions: { - parser: tsParser, - ecmaVersion: 2022, - sourceType: 'module', - parserOptions: { - project: './tsconfig.json', - tsconfigRootDir: import.meta.dirname, - }, - }, - - rules: { - '@typescript-eslint/naming-convention': [ - 'warn', - { - selector: 'import', - format: ['camelCase', 'PascalCase'], - }, - ], - - curly: 'warn', - eqeqeq: 'warn', - 'no-throw-literal': 'warn', - semi: 'warn', - '@typescript-eslint/no-floating-promises': ['error'], - '@typescript-eslint/no-unsafe-type-assertion': 'error', - }, - }, - { - files: ['**/*.test.ts'], - rules: { - '@typescript-eslint/no-unsafe-type-assertion': 'off', - }, - }, -];