Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
df2e468
chore: remove unused dependencies
alexluckett Jun 5, 2026
b8362d4
chore: update dependencies to latest minor/patch
alexluckett Jun 5, 2026
fc2fcb2
chore: upgrade pino to v10
alexluckett Jun 5, 2026
8e15d43
chore: upgrade eslint-plugin-jsdoc to v63
alexluckett Jun 5, 2026
7032c82
chore: upgrade eslint-plugin-jest to v29
alexluckett Jun 5, 2026
29cd12f
chore: upgrade lint-staged to v17
alexluckett Jun 5, 2026
29d6c7c
chore: upgrade concurrently to v10
alexluckett Jun 5, 2026
725d1af
chore: upgrade @types/node to v25
alexluckett Jun 5, 2026
b43deff
chore: upgrade webpack-cli to v7
alexluckett Jun 5, 2026
43d76c4
chore: upgrade copy-webpack-plugin to v14
alexluckett Jun 5, 2026
1f3062f
chore: upgrade sass-loader to v17
alexluckett Jun 5, 2026
95daf68
chore: upgrade cssnano to v8
alexluckett Jun 5, 2026
6c803dd
chore: upgrade joi to v18
alexluckett Jun 5, 2026
b6842be
chore: upgrade govuk-frontend to v6
alexluckett Jun 5, 2026
1db9af2
chore: move govuk-frontend to peerDependencies; keep in devDependenci…
alexluckett Jun 8, 2026
1405e5d
fix: restore govuk-frontend to dependencies; peer dep is additive not…
alexluckett Jun 8, 2026
c8fcad2
chore: tighten govuk-frontend peer dep range to ^6.2.0
alexluckett Jun 8, 2026
9707479
fix: migrate devtool header to govuk-frontend v6 pattern
alexluckett Jun 8, 2026
a5d9b43
fix: show form name in devtool service navigation header
alexluckett Jun 8, 2026
8ad9386
add form name to new service banner (devtool only)
alexluckett Jun 8, 2026
5f17b81
fix: revert joi to v17 — forms-model peer dep requires ^17.0.0
alexluckett Jun 8, 2026
ba6a6b6
fix: revert spurious as-unknown casts introduced for joi v18 types
alexluckett Jun 8, 2026
809266a
Regenerate package-lock.json
alexluckett Jun 8, 2026
4011472
Merge remote-tracking branch 'origin/main' into chore/dependency-mana…
alexluckett Jun 8, 2026
616c06e
fix: remove dead value:'' override from FileUploadField view model
alexluckett Jun 8, 2026
2e2cc59
chore: apply govuk-frontend v6 template block recommendations
alexluckett Jun 8, 2026
015d7c2
fix: use govuk-frontend v6 inner blocks for devtool header and footer
alexluckett Jun 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .husky/pre-commit
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lint-staged
npx lint-staged
4 changes: 4 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ export default tseslint.config(
],

// JSDoc @param is optional
'jsdoc/reject-any-type': 'off',
'jsdoc/reject-function-type': 'off',
'jsdoc/require-param-description': 'off',
'jsdoc/require-param-type': 'off',
'jsdoc/require-param': 'off',
Expand Down Expand Up @@ -218,6 +220,8 @@ export default tseslint.config(
],

// JSDoc @param types are mandatory for JavaScript
'jsdoc/reject-any-type': 'off',
'jsdoc/reject-function-type': 'off',
'jsdoc/require-param-description': 'off',
'jsdoc/require-param-type': 'error',
'jsdoc/require-param': 'off',
Expand Down
Loading
Loading