Skip to content

Commit 1e98765

Browse files
authored
settings.json: tweak editor.codeActionsOnSave (Comcast#4033)
1 parent da5ab4f commit 1e98765

3 files changed

Lines changed: 13 additions & 15 deletions

File tree

.vscode/settings.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"editor.codeActionsOnSave": {
33
"source.fixAll": "explicit",
4+
"source.organizeLinkDefinitions": "explicit",
45
"source.removeUnusedImports": "explicit",
5-
// prevent removal of unreachable code
6-
"source.fixAll.ts": "never"
6+
"source.format.oxc": "explicit"
77
},
88
"editor.defaultFormatter": "oxc.oxc-vscode",
9-
"editor.formatOnSave": true,
10-
"editor.formatOnSaveMode": "file",
119
"js/ts.tsdk.promptToUseWorkspaceVersion": true,
1210
"js/ts.tsdk.path": "node_modules/typescript/lib",
1311
"js/ts.experimental.useTsgo": true,

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,6 @@
66
[![codecov-badge]][codecov-url]
77
[![ci-badge]][ci-url]
88

9-
[npm-badge]: https://img.shields.io/npm/v/react-data-grid
10-
[npm-url]: https://www.npmjs.com/package/react-data-grid
11-
[size-badge]: https://img.shields.io/bundlephobia/minzip/react-data-grid
12-
[size-url]: https://bundlephobia.com/package/react-data-grid
13-
[type-badge]: https://img.shields.io/npm/types/react-data-grid
14-
[codecov-badge]: https://codecov.io/gh/Comcast/react-data-grid/branch/main/graph/badge.svg?token=cvrRSWiz0Q
15-
[codecov-url]: https://app.codecov.io/gh/Comcast/react-data-grid
16-
[ci-badge]: https://github.com/Comcast/react-data-grid/workflows/CI/badge.svg
17-
[ci-url]: https://github.com/Comcast/react-data-grid/actions
18-
199
The DataGrid component is designed to handle large datasets efficiently while offering a rich set of features for customization and interactivity.
2010

2111
## Table of contents
@@ -2104,3 +2094,13 @@ type Maybe<T> = T | undefined | null;
21042094
- `R`, `TRow`: Row type
21052095
- `SR`, `TSummaryRow`: Summary row type
21062096
- `K`: Row key type
2097+
2098+
[ci-badge]: https://github.com/Comcast/react-data-grid/workflows/CI/badge.svg
2099+
[ci-url]: https://github.com/Comcast/react-data-grid/actions
2100+
[codecov-badge]: https://codecov.io/gh/Comcast/react-data-grid/branch/main/graph/badge.svg?token=cvrRSWiz0Q
2101+
[codecov-url]: https://app.codecov.io/gh/Comcast/react-data-grid
2102+
[npm-badge]: https://img.shields.io/npm/v/react-data-grid
2103+
[npm-url]: https://www.npmjs.com/package/react-data-grid
2104+
[size-badge]: https://img.shields.io/bundlephobia/minzip/react-data-grid
2105+
[size-url]: https://bundlephobia.com/package/react-data-grid
2106+
[type-badge]: https://img.shields.io/npm/types/react-data-grid

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@types/node": "^25.6.0",
5757
"@types/react": "^19.2.14",
5858
"@types/react-dom": "^19.2.3",
59-
"@typescript/native-preview": "^7.0.0-dev.20260421.1",
59+
"@typescript/native-preview": "^7.0.0-dev.20260421.2",
6060
"@vitejs/plugin-react": "^6.0.1",
6161
"@vitest/browser-playwright": "^4.1.5",
6262
"@vitest/coverage-istanbul": "^4.1.5",

0 commit comments

Comments
 (0)