mikey-pro 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/README.md +9 -9
- package/eslint-config/overrides.js +3 -0
- package/package.json +2 -4
- package/stylelint-config/index.js +0 -1
package/README.md
CHANGED
|
@@ -46,21 +46,21 @@ export { default } from 'mikey-pro';
|
|
|
46
46
|
## Subpath Exports
|
|
47
47
|
|
|
48
48
|
```js
|
|
49
|
-
import config from 'mikey-pro';
|
|
49
|
+
import config from 'mikey-pro'; // ESLint flat config array
|
|
50
50
|
import { baseConfig } from 'mikey-pro/eslint/base-config.js'; // Base config object
|
|
51
51
|
import { baseOverrides } from 'mikey-pro/eslint/overrides.js'; // File-specific overrides
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
## Packages
|
|
55
55
|
|
|
56
|
-
| Package
|
|
57
|
-
|
|
58
|
-
| `mikey-pro`
|
|
59
|
-
| `@mikey-pro/eslint-config-react`
|
|
60
|
-
| `@mikey-pro/eslint-config-vue`
|
|
61
|
-
| `@mikey-pro/eslint-config-svelte`
|
|
62
|
-
| `@mikey-pro/eslint-config-angular` | Angular rules
|
|
63
|
-
| `@mikey-pro/ruff-config`
|
|
56
|
+
| Package | Description |
|
|
57
|
+
| ---------------------------------- | -------------------------------------------- |
|
|
58
|
+
| `mikey-pro` | Unified base — ESLint + Prettier + Stylelint |
|
|
59
|
+
| `@mikey-pro/eslint-config-react` | React/Next.js rules |
|
|
60
|
+
| `@mikey-pro/eslint-config-vue` | Vue/Nuxt rules |
|
|
61
|
+
| `@mikey-pro/eslint-config-svelte` | Svelte/SvelteKit rules |
|
|
62
|
+
| `@mikey-pro/eslint-config-angular` | Angular rules |
|
|
63
|
+
| `@mikey-pro/ruff-config` | Python guardrails (Ruff) |
|
|
64
64
|
|
|
65
65
|
## License
|
|
66
66
|
|
|
@@ -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",
|
|
3
|
-
"version": "10.3.
|
|
3
|
+
"version": "10.3.3",
|
|
4
4
|
"description": "AI agent code quality guardrails — ESLint, Prettier, and Stylelint unified config",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -146,9 +146,7 @@
|
|
|
146
146
|
"angular"
|
|
147
147
|
],
|
|
148
148
|
"author": "Mikl Wolfe <wolfe@mikl.io> (https://mikl.io)",
|
|
149
|
-
"browserslist": [
|
|
150
|
-
"defaults"
|
|
151
|
-
],
|
|
149
|
+
"browserslist": ["defaults"],
|
|
152
150
|
"engines": {
|
|
153
151
|
"node": ">=20.19.0",
|
|
154
152
|
"npm": ">=9.0.0",
|