-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Node 14, 16 and 18 and allowing only 20.x || 22.x and updating the following dependencies: body-parser 1.20.2 -> 1.20.3 debug ^4.3.6 -> ^4.3.7 hmpo-model ^5.0.1 -> *** eslint ^8.57.0 -> ^9.12.0 and replacing .eslintrc with eslint.config.js hmpo-logger ^7.0.2 -> *** mocha ^10.7.0 -> ^10.7.3 nyc ^17.0.0 -> ^17.1.0 Replacing reqres with hmpo-reqres *** sinon ^18.0.0 -> ^19.0.2 Adding Husky ^9.1.6 then adding ./husky/pre-push Adding globals ^15.9.0
- Loading branch information
Showing
13 changed files
with
742 additions
and
1,014 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
const js = require('@eslint/js'); | ||
const globals = require('globals'); | ||
|
||
|
||
const styleRules = { | ||
quotes: ['error', 'single', { avoidEscape: true }], | ||
'no-trailing-spaces': 'error', | ||
indent: 'error', | ||
'linebreak-style': ['error', 'unix'], | ||
semi: ['error', 'always'], | ||
'brace-style': ['error', '1tbs', { allowSingleLine: true }], | ||
'keyword-spacing': 'error', | ||
'space-before-blocks': 'error', | ||
'space-before-function-paren': [ | ||
'error', | ||
{ anonymous: 'always', named: 'never' }, | ||
], | ||
'no-mixed-spaces-and-tabs': 'error', | ||
'comma-spacing': ['error', { before: false, after: true }], | ||
'key-spacing': ['error', { beforeColon: false, afterColon: true }], | ||
}; | ||
|
||
|
||
module.exports = [ | ||
js.configs.recommended, | ||
{ | ||
languageOptions: { | ||
ecmaVersion: 2022, | ||
globals: { | ||
...globals.node, | ||
} | ||
}, | ||
rules: { | ||
'no-unused-vars': [ | ||
'error', | ||
{ argsIgnorePattern: '^(err|req|res|next)$' }, | ||
], | ||
'one-var': ['error', { initialized: 'never' }], | ||
'no-var': 'error', | ||
...styleRules, | ||
}, | ||
}, | ||
// Unit tests | ||
{ | ||
files: ['test/**'], | ||
languageOptions: { | ||
globals: { | ||
...globals.mocha, | ||
sinon: 'readonly', | ||
request: 'readonly', | ||
response: 'readonly', | ||
expect: 'readonly' | ||
}, | ||
}, | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
|
||
/* eslint-disable no-undef */ | ||
window.GOVUKFrontend.initAll(); |
Oops, something went wrong.