Skip to content

Commit d8e9805

Browse files
authored
Merge pull request #1335 from InseeFr/4.15.0
chore: 4.15.0-rc0
2 parents 7e35068 + ce45caf commit d8e9805

File tree

159 files changed

+8276
-3768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+8276
-3768
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
*.spec.ts{,x}

eslint.config.mjs

Lines changed: 0 additions & 87 deletions
This file was deleted.

oxlint.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"rules": {
3+
"eslint/no-console": "off",
4+
"unicorn/no-single-promise-in-promise-methods": "off",
5+
"eslint/no-unsafe-optional-chaining": "off",
6+
"unicorn/no-useless-fallback-in-spread": "off",
7+
"typescript/triple-slash-reference": "off"
8+
}
9+
}

package.json

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bauhaus",
3-
"version": "4.14.0",
3+
"version": "4.15.0",
44
"type": "module",
55
"description": "Web application for the management of concepts, classifications and other statistical objects",
66
"repository": {
@@ -12,7 +12,7 @@
1212
"private": true,
1313
"scripts": {
1414
"pre-script": "cross-env NODE_OPTIONS=--openssl-legacy-provider",
15-
"lint": "npx eslint && npx stylelint \"src/**/*.css\"",
15+
"lint": "oxlint -c oxlint.json && npx stylelint \"src/**/*.css\"",
1616
"test": "vitest",
1717
"test:coverage": "cross-env CI=true vitest run --coverage",
1818
"start": "pnpm pre-script vite",
@@ -44,12 +44,11 @@
4444
"@parcel/watcher",
4545
"core-js",
4646
"esbuild",
47-
"sharp"
47+
"sharp",
48+
"@oxlint/darwin-universal"
4849
]
4950
},
5051
"devDependencies": {
51-
"@eslint-react/eslint-plugin": "^1.52.6",
52-
"@eslint/js": "^9.16.0",
5352
"@prettier/plugin-oxc": "^0.0.4",
5453
"@testing-library/dom": "^10.4.0",
5554
"@testing-library/jest-dom": "^6.6.3",
@@ -61,29 +60,22 @@
6160
"@types/node": "^22.9.0",
6261
"@types/react": "^18.2.79",
6362
"@types/react-dom": "^18.2.25",
64-
"@types/react-select": "^5.0.1",
6563
"@vitejs/plugin-react": "^4.3.4",
6664
"@vitest/browser": "3.2.4",
6765
"@vitest/coverage-istanbul": "^3.0.9",
6866
"bestzip": "^2.2.1",
6967
"cross-env": "^7.0.3",
7068
"esbuild-plugin-react-virtualized": "^1.0.4",
71-
"eslint": "^9.16.0",
72-
"eslint-plugin-jsx-a11y": "^6.10.2",
73-
"eslint-plugin-react": "^7.37.2",
74-
"eslint-plugin-react-perf": "^3.3.3",
75-
"eslint-plugin-vitest": "^0.5.4",
76-
"globals": "^15.9.0",
7769
"happy-dom": "^15.11.7",
7870
"husky": "^9.1.6",
71+
"oxlint": "^1.24.0",
7972
"playwright": "^1.55.1",
8073
"prettier": "^3.6.1",
8174
"prop-types": "^15.8.1",
8275
"react-app-polyfill": "^3.0.0",
8376
"sass": "^1.80.6",
8477
"stylelint": "^16.11.0",
8578
"stylelint-config-standard": "^36.0.1",
86-
"typescript-eslint": "^8.13.0",
8779
"vite": "^7.0.0",
8880
"vite-envs": "^4.6.0",
8981
"vite-plugin-csp-guard": "^2.1.1",
@@ -116,7 +108,6 @@
116108
"react-modal": "^3.14.4",
117109
"react-redux": "^7.2.6",
118110
"react-router-dom": "6.27.0",
119-
"react-select": "1.3.0",
120111
"react-sliding-side-panel": "1.1.8",
121112
"redux": "^4.2.0",
122113
"redux-thunk": "^2.4.2",

0 commit comments

Comments
 (0)