eslint-config-uphold 6.5.3 → 6.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-uphold",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"description": "Uphold-flavored ESLint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/core": "^7.27.4",
|
|
35
35
|
"@babel/eslint-parser": "^7.27.5",
|
|
36
|
-
"@stylistic/eslint-plugin": "^
|
|
36
|
+
"@stylistic/eslint-plugin": "^5.0.0",
|
|
37
37
|
"eslint-config-prettier": "^10.1.5",
|
|
38
38
|
"eslint-plugin-jsdoc": "^50.8.0",
|
|
39
39
|
"eslint-plugin-mocha": "^11.1.0",
|
|
40
40
|
"eslint-plugin-n": "^17.20.0",
|
|
41
|
-
"eslint-plugin-prettier": "^5.5.
|
|
41
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
42
42
|
"eslint-plugin-promise": "^7.2.1",
|
|
43
43
|
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
44
44
|
"eslint-plugin-sort-imports-requires": "^2.0.0",
|
|
@@ -49,9 +49,10 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@fastify/pre-commit": "^2.2.0",
|
|
51
51
|
"@types/eslint": "^9.6.1",
|
|
52
|
+
"@types/node": "^22.15.21",
|
|
52
53
|
"@uphold/github-changelog-generator": "^4.0.2",
|
|
53
54
|
"eslint": "~9.29.0",
|
|
54
|
-
"prettier": "^3.
|
|
55
|
+
"prettier": "^3.6.1",
|
|
55
56
|
"release-it": "^19.0.3"
|
|
56
57
|
},
|
|
57
58
|
"peerDependencies": {
|
package/src/index.js
CHANGED
|
@@ -61,10 +61,14 @@ const upholdBaseConfig = defineConfig([
|
|
|
61
61
|
jsdoc,
|
|
62
62
|
mocha,
|
|
63
63
|
'node-plugin': nodePlugin,
|
|
64
|
+
// @ts-expect-error Outdated types for `eslint-plugin-promise`.
|
|
64
65
|
promise,
|
|
66
|
+
// @ts-expect-error Outdated types for `eslint-plugin-sort-destructure-keys`.
|
|
65
67
|
'sort-destructure-keys': sortDestructureKeys,
|
|
66
68
|
'sort-imports-requires': sortImportsRequires,
|
|
69
|
+
// @ts-expect-error Outdated types for `eslint-plugin-sort-keys-fix`.
|
|
67
70
|
'sort-keys-fix': sortKeysFix,
|
|
71
|
+
// @ts-expect-error Outdated types for `eslint-plugin-sql-template`.
|
|
68
72
|
'sql-template': sqlTemplate,
|
|
69
73
|
'uphold-plugin': { rules }
|
|
70
74
|
},
|