Compare commits

...

1 Commits

Author SHA1 Message Date
Stephen Zhou
8ec5370b8d chore: update to eslint 10 2026-02-26 21:43:43 +08:00
7 changed files with 747 additions and 711 deletions

View File

@@ -33,7 +33,7 @@ Then, configure the environment variables. Create a file named `.env.local` in t
cp .env.example .env.local
```
```
```txt
# For production release, change this to PRODUCTION
NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT
# The deployment edition, SELF_HOSTED

View File

@@ -61,8 +61,7 @@ const ParamsConfig = ({
if (tempDataSetConfigs.retrieval_model === RETRIEVE_TYPE.multiWay) {
if (tempDataSetConfigs.reranking_enable
&& tempDataSetConfigs.reranking_mode === RerankingModeEnum.RerankingModel
&& !isCurrentRerankModelValid
) {
&& !isCurrentRerankModelValid) {
errMsg = t('datasetConfig.rerankModelRequired', { ns: 'appDebug' })
}
}

View File

@@ -46,8 +46,7 @@ const nodeDefault: NodeDefault<HttpNodeType> = {
if (!errorMessages
&& payload.body.type === BodyType.binary
&& ((!(payload.body.data as BodyPayload)[0]?.file) || (payload.body.data as BodyPayload)[0]?.file?.length === 0)
) {
&& ((!(payload.body.data as BodyPayload)[0]?.file) || (payload.body.data as BodyPayload)[0]?.file?.length === 0)) {
errorMessages = t('errorMsg.fieldRequired', { ns: 'workflow', field: t('nodes.http.binaryFileVariable', { ns: 'workflow' }) })
}

View File

@@ -8196,11 +8196,6 @@
"count": 3
}
},
"i18n-config/README.md": {
"no-irregular-whitespace": {
"count": 1
}
},
"i18n/de-DE/billing.json": {
"no-irregular-whitespace": {
"count": 1

View File

@@ -6,7 +6,7 @@ This directory contains i18n tooling and configuration. Translation files live u
## File Structure
```
```txt
web/i18n
├── en-US
│ ├── app.json
@@ -36,7 +36,7 @@ By default we will use `LanguagesSupported` to determine which languages are sup
1. Create a new folder for the new language.
```
```txt
cd web/i18n
cp -r en-US id-ID
```
@@ -98,7 +98,7 @@ export const languages = [
{
value: 'ru-RU',
name: 'Русский(Россия)',
example: ' Привет, Dify!',
example: 'Привет, Dify!',
supported: false,
},
{

View File

@@ -3,7 +3,7 @@
"type": "module",
"version": "1.13.0",
"private": true,
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"packageManager": "pnpm@10.27.0",
"imports": {
"#i18n": {
"react-server": "./i18n-config/lib.server.ts",
@@ -165,10 +165,10 @@
"zustand": "5.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "7.2.0",
"@antfu/eslint-config": "7.6.1",
"@chromatic-com/storybook": "5.0.0",
"@egoist/tailwindcss-icons": "1.9.2",
"@eslint-react/eslint-plugin": "2.9.4",
"@eslint-react/eslint-plugin": "2.13.0",
"@iconify-json/heroicons": "1.2.3",
"@iconify-json/ri": "1.2.9",
"@mdx-js/loader": "3.1.1",
@@ -208,7 +208,7 @@
"@types/semver": "7.7.1",
"@types/sortablejs": "1.15.8",
"@types/uuid": "10.0.0",
"@typescript-eslint/parser": "8.54.0",
"@typescript-eslint/parser": "8.56.1",
"@typescript/native-preview": "7.0.0-dev.20251209.1",
"@vitejs/plugin-react": "5.1.2",
"@vitest/coverage-v8": "4.0.17",
@@ -216,13 +216,13 @@
"code-inspector-plugin": "1.3.6",
"cross-env": "10.1.0",
"esbuild": "0.27.2",
"eslint": "9.39.2",
"eslint-plugin-better-tailwindcss": "https://pkg.pr.new/hyoban/eslint-plugin-better-tailwindcss@c0161c7",
"eslint-plugin-hyoban": "0.11.1",
"eslint": "10.0.2",
"eslint-plugin-better-tailwindcss": "4.3.1",
"eslint-plugin-hyoban": "0.11.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.0",
"eslint-plugin-sonarjs": "3.0.6",
"eslint-plugin-storybook": "10.2.6",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-sonarjs": "4.0.0",
"eslint-plugin-storybook": "10.2.13",
"husky": "9.1.7",
"iconify-import-svg": "0.1.1",
"jsdom": "27.3.0",

1419
web/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff