Skip to content

Commit be3a9e3

Browse files
lint fixes - next16 doesn't ship a linter anymore
1 parent 6888e1d commit be3a9e3

9 files changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ on:
44
workflow_dispatch:
55
inputs:
66
ignore-run-cache:
7-
description: 'Whether to ignore the run cache'
7+
description: "Whether to ignore the run cache"
88
required: false
9-
default: true
9+
default: "true"
1010
ref-tag:
11-
description: 'overwrite the DOCKER_METADATA_OUTPUT_VERSION environment variable used by the make file'
11+
description: "overwrite the DOCKER_METADATA_OUTPUT_VERSION environment variable used by the make file"
1212
required: false
13-
default: ''
1413
jobs:
1514
quality:
1615
name: Ensure Quality

apps/login/locales/de.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "Daten konnten nicht geladen werden. Bitte versuchen Sie es erneut.",
273273
"tryagain": "Erneut versuchen"
274274
}
275-
}
275+
}

apps/login/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,4 +282,4 @@
282282
"failedLoading": "Failed to load data. Please try again.",
283283
"tryagain": "Try Again"
284284
}
285-
}
285+
}

apps/login/locales/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "No se pudieron cargar los datos. Por favor, inténtalo de nuevo.",
273273
"tryagain": "Intentar de nuevo"
274274
}
275-
}
275+
}

apps/login/locales/it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "Impossibile caricare i dati. Riprova.",
273273
"tryagain": "Riprova"
274274
}
275-
}
275+
}

apps/login/locales/pl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "Nie udało się załadować danych. Spróbuj ponownie.",
273273
"tryagain": "Spróbuj ponownie"
274274
}
275-
}
275+
}

apps/login/locales/ru.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "Ошибка загрузки данных. Попробуйте ещё раз.",
273273
"tryagain": "Попробовать снова"
274274
}
275-
}
275+
}

apps/login/locales/zh.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@
272272
"failedLoading": "加载数据失败,请再试一次。",
273273
"tryagain": "重试"
274274
}
275-
}
275+
}

apps/login/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test:unit": "pnpm vitest",
88
"test:unit:standalone": "pnpm test:unit",
99
"test:unit:watch": "pnpm test:unit --watch",
10-
"lint": "pnpm exec next lint && pnpm exec prettier --check .",
10+
"lint": "pnpm exec eslint . && pnpm exec prettier --check .",
1111
"lint:fix": "pnpm exec prettier --write .",
1212
"lint-staged": "lint-staged",
1313
"build": "pnpm exec next build",

0 commit comments

Comments
 (0)