From 37cca0b131180f68b47dfd1c46d70ffba6ffc9bc Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 21 Apr 2026 21:33:02 +0100 Subject: [PATCH] `settings.json`: tweak `editor.codeActionsOnSave` --- .vscode/settings.json | 6 ++---- README.md | 20 ++++++++++---------- package.json | 2 +- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b3ad807b3d..7fba10a955 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,11 @@ { "editor.codeActionsOnSave": { "source.fixAll": "explicit", + "source.organizeLinkDefinitions": "explicit", "source.removeUnusedImports": "explicit", - // prevent removal of unreachable code - "source.fixAll.ts": "never" + "source.format.oxc": "explicit" }, "editor.defaultFormatter": "oxc.oxc-vscode", - "editor.formatOnSave": true, - "editor.formatOnSaveMode": "file", "js/ts.tsdk.promptToUseWorkspaceVersion": true, "js/ts.tsdk.path": "node_modules/typescript/lib", "js/ts.experimental.useTsgo": true, diff --git a/README.md b/README.md index d8f15085a9..64468796a3 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,6 @@ [![codecov-badge]][codecov-url] [![ci-badge]][ci-url] -[npm-badge]: https://img.shields.io/npm/v/react-data-grid -[npm-url]: https://www.npmjs.com/package/react-data-grid -[size-badge]: https://img.shields.io/bundlephobia/minzip/react-data-grid -[size-url]: https://bundlephobia.com/package/react-data-grid -[type-badge]: https://img.shields.io/npm/types/react-data-grid -[codecov-badge]: https://codecov.io/gh/Comcast/react-data-grid/branch/main/graph/badge.svg?token=cvrRSWiz0Q -[codecov-url]: https://app.codecov.io/gh/Comcast/react-data-grid -[ci-badge]: https://github.com/Comcast/react-data-grid/workflows/CI/badge.svg -[ci-url]: https://github.com/Comcast/react-data-grid/actions - The DataGrid component is designed to handle large datasets efficiently while offering a rich set of features for customization and interactivity. ## Table of contents @@ -2104,3 +2094,13 @@ type Maybe = T | undefined | null; - `R`, `TRow`: Row type - `SR`, `TSummaryRow`: Summary row type - `K`: Row key type + +[ci-badge]: https://github.com/Comcast/react-data-grid/workflows/CI/badge.svg +[ci-url]: https://github.com/Comcast/react-data-grid/actions +[codecov-badge]: https://codecov.io/gh/Comcast/react-data-grid/branch/main/graph/badge.svg?token=cvrRSWiz0Q +[codecov-url]: https://app.codecov.io/gh/Comcast/react-data-grid +[npm-badge]: https://img.shields.io/npm/v/react-data-grid +[npm-url]: https://www.npmjs.com/package/react-data-grid +[size-badge]: https://img.shields.io/bundlephobia/minzip/react-data-grid +[size-url]: https://bundlephobia.com/package/react-data-grid +[type-badge]: https://img.shields.io/npm/types/react-data-grid diff --git a/package.json b/package.json index 082cc9bd30..466ec20b74 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "@types/node": "^25.6.0", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", - "@typescript/native-preview": "^7.0.0-dev.20260421.1", + "@typescript/native-preview": "^7.0.0-dev.20260421.2", "@vitejs/plugin-react": "^6.0.1", "@vitest/browser-playwright": "^4.1.5", "@vitest/coverage-istanbul": "^4.1.5",