diff --git a/.vscode/settings.json b/.vscode/settings.json index 5c9676d6222..adff015ab05 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,4 @@ { - "eslint.options": { - "flags": ["unstable_ts_config"] - }, // Enable eslint validation for js and ts files "eslint.validate": ["javascript", "typescript"], diff --git a/eslint.config.ts b/eslint.config.ts index 8c980b2c08b..2e24b6ce724 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -27,7 +27,7 @@ const config: ReturnType = tseslint.config( 'docs/.vitepress/components/api-docs/format.ts', 'docs/.vitepress/shared/utils/slugify.ts', 'docs/.vitepress/theme/index.ts', - 'eslint.config.js', + 'eslint.config.ts', ], }, { diff --git a/package.json b/package.json index ce8b5766acc..3f8b43c3353 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "docs:serve": "vitepress serve docs --port 5173", "docs:diff": "tsx ./scripts/diff.ts", "format": "prettier --cache --write .", - "lint": "eslint --cache --cache-strategy content --flag unstable_ts_config .", + "lint": "eslint --cache --cache-strategy content .", "ts-check": "tsc", "test": "vitest", "test:update-snapshots": "vitest run -u",