@mikey-pro/eslint-config 10.3.0 → 10.3.3
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/overrides.js +3 -0
- package/package.json +2 -4
package/overrides.js
CHANGED
|
@@ -37,6 +37,9 @@ export const ts = {
|
|
|
37
37
|
|
|
38
38
|
// Override some rules for better developer experience
|
|
39
39
|
'@typescript-eslint/class-methods-use-this': 'off',
|
|
40
|
+
// Disabled: calls sourceCode.getJSDocComment() which was removed in ESLint 10.
|
|
41
|
+
// The rule was deprecated in @typescript-eslint v7 in favor of no-this-alias.
|
|
42
|
+
'@typescript-eslint/no-invalid-this': 'off',
|
|
40
43
|
'@typescript-eslint/consistent-generic-constructors': [
|
|
41
44
|
'error',
|
|
42
45
|
'constructor',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/eslint-config",
|
|
3
|
-
"version": "10.3.
|
|
3
|
+
"version": "10.3.3",
|
|
4
4
|
"description": "Mikey Pro ESLint configuration - Ultimate coding style guide for excellence",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -93,9 +93,7 @@
|
|
|
93
93
|
"angular"
|
|
94
94
|
],
|
|
95
95
|
"author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
|
|
96
|
-
"browserslist": [
|
|
97
|
-
"defaults"
|
|
98
|
-
],
|
|
96
|
+
"browserslist": ["defaults"],
|
|
99
97
|
"type": "module",
|
|
100
98
|
"engines": {
|
|
101
99
|
"node": ">=20.19.0",
|