eslint-config-conventions 21.3.0 → 21.4.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/.oxlintrc.json +3 -0
- package/package.json +8 -8
package/.oxlintrc.json
CHANGED
|
@@ -175,6 +175,8 @@
|
|
|
175
175
|
"typescript/require-await": "off",
|
|
176
176
|
"typescript/switch-exhaustiveness-check": "off",
|
|
177
177
|
"typescript/ban-ts-comment": "off",
|
|
178
|
+
"typescript/prefer-readonly-parameter-types": "off",
|
|
179
|
+
"typescript/strict-void-return": "off",
|
|
178
180
|
"no-unused-vars": [
|
|
179
181
|
"error",
|
|
180
182
|
{
|
|
@@ -215,6 +217,7 @@
|
|
|
215
217
|
"typescript/adjacent-overload-signatures": "error",
|
|
216
218
|
"typescript/consistent-type-definitions": "error",
|
|
217
219
|
"typescript/consistent-type-imports": "error",
|
|
220
|
+
"typescript/explicit-member-accessibility": "error",
|
|
218
221
|
"typescript/explicit-function-return-type": [
|
|
219
222
|
"error",
|
|
220
223
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-conventions",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.4.0",
|
|
4
4
|
"public": true,
|
|
5
5
|
"description": "ESLint shareable config to enforce strict conventions and good code quality.",
|
|
6
6
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
@@ -75,18 +75,18 @@
|
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@types/node": "25.
|
|
79
|
-
"globals": "17.
|
|
78
|
+
"@types/node": "25.6.0",
|
|
79
|
+
"globals": "17.5.0",
|
|
80
80
|
"editorconfig-checker": "6.1.1",
|
|
81
|
-
"oxlint": "1.
|
|
82
|
-
"@oxlint/migrate": "1.
|
|
81
|
+
"oxlint": "1.61.0",
|
|
82
|
+
"@oxlint/migrate": "1.61.0",
|
|
83
83
|
"eslint": "9.39.4",
|
|
84
84
|
"eslint-plugin-promise": "7.2.1",
|
|
85
85
|
"eslint-plugin-unicorn": "64.0.0",
|
|
86
86
|
"eslint-plugin-import-x": "4.16.2",
|
|
87
|
-
"typescript-eslint": "8.
|
|
88
|
-
"prettier": "3.8.
|
|
87
|
+
"typescript-eslint": "8.59.0",
|
|
88
|
+
"prettier": "3.8.3",
|
|
89
89
|
"semantic-release": "25.0.3",
|
|
90
|
-
"typescript": "6.0.
|
|
90
|
+
"typescript": "6.0.3"
|
|
91
91
|
}
|
|
92
92
|
}
|