-
Notifications
You must be signed in to change notification settings - Fork 1
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: async ^3.2.5 -> ^3.2.6 deep-clone-merge ^1.5.4 -> ^1.5.5 replacing deprecated findup with find-up ^5.0.0 glob ^10.4.5 -> ^11.0.0 eslint ^8.57.0 -> ^9.12.0 Adding eslint-define-config and replacing .eslintrc with eslint.config.js Adding Husky ^9.1.6 then adding ./husky/pre-push replacing reqres with hmpo-reqres ^2.0.0 sinon ^18.0.0 -> ^19.0.2 sinon-test ^3.1.6 globals ^15.11.0 proxyquire ^2.1.3
- Loading branch information
Showing
29 changed files
with
2,084 additions
and
2,087 deletions.
There are no files selected for viewing
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,53 @@ | ||
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', | ||
}, | ||
}, | ||
}, | ||
]; |
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 +1,2 @@ | ||
node_modules | ||
package-lock.json |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
package-lock.json |
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 |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"private": true, | ||
"dependencies": { | ||
"express": "^4.16.4", | ||
"hmpo-i18n": "*" | ||
"hmpo-i18n": "../.." | ||
} | ||
} |
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 +1,2 @@ | ||
node_modules | ||
package-lock.json |
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,10 +1,10 @@ | ||
var i18n = require('i18n-future')(); | ||
let i18n = require('hmpo-i18n')(); | ||
|
||
i18n.on('ready', function () { | ||
var en = i18n.translate('greeting', 'en'); | ||
let en = i18n.translate('greeting', 'en'); | ||
console.log('English:', en); | ||
var fr = i18n.translate('greeting', 'fr'); | ||
let fr = i18n.translate('greeting', 'fr'); | ||
console.log('French:', fr); | ||
var def = i18n.translate('greeting'); | ||
let def = i18n.translate('greeting'); | ||
console.log('Default fallback:', def); | ||
}); |
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 |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
"version": "0.0.0", | ||
"private": true, | ||
"dependencies": { | ||
"hmpo-i18n": "*" | ||
"hmpo-i18n": "../.." | ||
} | ||
} |
Oops, something went wrong.