Skip to content

Commit 3688591

Browse files
committed
⬆️(dependency) upgrade eslint to v9
We upgraded ESLint to version 9 in the eslint-config-impress package. We rename it to eslint-plugin-docs.
1 parent 2578318 commit 3688591

File tree

24 files changed

+520
-334
lines changed

24 files changed

+520
-334
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to
1515
### Changed
1616

1717
- 🔒️(backend) configure throttle on every viewsets #1343
18+
- ⬆️ Bump eslint to V9 #1071
1819

1920
## [3.6.0] - 2025-09-04
2021

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,6 @@ bump-packages-version: ## bump the version of the project - VERSION_TYPE can be
440440
cd ./src/frontend/apps/e2e/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
441441
cd ./src/frontend/apps/impress/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
442442
cd ./src/frontend/servers/y-provider/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
443-
cd ./src/frontend/packages/eslint-config-impress/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
443+
cd ./src/frontend/packages/eslint-plugin-docs/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
444444
cd ./src/frontend/packages/i18n/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
445445
.PHONY: bump-packages-version

renovate.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"@hocuspocus/provider",
2828
"@hocuspocus/server",
2929
"docx",
30-
"eslint",
3130
"fetch-mock",
3231
"node",
3332
"node-fetch",

src/frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ WORKDIR /home/frontend/
1010
COPY ./src/frontend/package.json ./package.json
1111
COPY ./src/frontend/yarn.lock ./yarn.lock
1212
COPY ./src/frontend/apps/impress/package.json ./apps/impress/package.json
13-
COPY ./src/frontend/packages/eslint-config-impress/package.json ./packages/eslint-config-impress/package.json
13+
COPY ./src/frontend/packages/eslint-plugin-docs/package.json ./packages/eslint-plugin-docs/package.json
1414

1515
RUN yarn install --frozen-lockfile
1616

1717
COPY .dockerignore ./.dockerignore
1818
COPY ./src/frontend/.prettierrc.js ./.prettierrc.js
19-
COPY ./src/frontend/packages/eslint-config-impress ./packages/eslint-config-impress
19+
COPY ./src/frontend/packages/eslint-plugin-docs ./packages/eslint-plugin-docs
2020
COPY ./src/frontend/apps/impress ./apps/impress
2121

2222
### ---- Front-end builder image ----

src/frontend/apps/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@playwright/test": "1.55.0",
1616
"@types/node": "*",
1717
"@types/pdf-parse": "1.1.5",
18-
"eslint-config-impress": "*",
18+
"eslint-plugin-docs": "*",
1919
"typescript": "*"
2020
},
2121
"dependencies": {

src/frontend/apps/impress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@vitejs/plugin-react": "5.0.2",
7777
"cross-env": "10.0.0",
7878
"dotenv": "17.2.1",
79-
"eslint-config-impress": "*",
79+
"eslint-plugin-docs": "*",
8080
"fetch-mock": "9.11.0",
8181
"jsdom": "26.1.0",
8282
"node-fetch": "2.7.0",

src/frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"app:test": "yarn APP_IMPRESS run test",
2121
"ci:build": "yarn APP_IMPRESS run build:ci",
2222
"e2e:test": "yarn APP_E2E run test",
23-
"lint": "yarn APP_IMPRESS run lint && yarn APP_E2E run lint && yarn workspace eslint-config-impress run lint && yarn I18N run lint && yarn COLLABORATION_SERVER run lint",
23+
"lint": "yarn APP_IMPRESS run lint && yarn APP_E2E run lint && yarn workspace eslint-plugin-docs run lint && yarn I18N run lint && yarn COLLABORATION_SERVER run lint",
2424
"i18n:extract": "yarn I18N run extract-translation",
2525
"i18n:deploy": "yarn I18N run format-deploy && yarn APP_IMPRESS prettier",
2626
"i18n:test": "yarn I18N run test",
@@ -33,7 +33,7 @@
3333
"@types/react-dom": "19.1.9",
3434
"@typescript-eslint/eslint-plugin": "8.41.0",
3535
"@typescript-eslint/parser": "8.41.0",
36-
"eslint": "8.57.0",
36+
"eslint": "9.32.0",
3737
"react": "19.1.1",
3838
"react-dom": "19.1.1",
3939
"typescript": "5.9.2",

src/frontend/packages/eslint-config-impress/.eslintrc.js

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

src/frontend/packages/eslint-config-impress/common.js

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

src/frontend/packages/eslint-config-impress/jest.js

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

0 commit comments

Comments
 (0)