@emeryld/manager 1.4.11 → 1.4.12

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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -73,6 +73,29 @@ You can also decide where the report lands: the manager will ask whether to stre
73
73
  - **Purpose**: give Codex agents, CI pipelines, and automation deterministic scans that print the same violation summaries as the interactive action.
74
74
  - **Output**: prints `Format checker violations:` followed by grouped or per-file buckets (with severity, snippets, and location references); when no violations occur you get `Format checker found no violations.` and `Workspace meets the configured format limits.` Colors mirror the interactive report to keep results easy to scan.
75
75
 
76
+ ## ESLint (in-editor)
77
+
78
+ If you want these checks surfaced as squiggles in your editor, you can run them as an ESLint rule.
79
+
80
+ 1. Install ESLint in your workspace: `pnpm add -D eslint`
81
+ 2. Add `eslint.config.js`:
82
+
83
+ ```js
84
+ import managerFormatChecker from '@emeryld/manager/dist/eslint-plugin-format-checker/index.js'
85
+
86
+ export default [
87
+ {
88
+ files: ['**/*.{ts,tsx,js,jsx,mjs,cjs}'],
89
+ plugins: { manager: managerFormatChecker },
90
+ rules: {
91
+ 'manager/format-checker': 'warn',
92
+ },
93
+ },
94
+ ]
95
+ ```
96
+
97
+ The rule defaults to the same limits as `manager-cli` and will also pick up `manager.formatChecker` from `.vscode/settings.json` (override any setting via rule options if you prefer).
98
+
76
99
  ## Robot metadata
77
100
 
78
101
  The `robot metadata` action now starts with the same interactive settings screen as the format checker: pick which kinds of symbols to include, decide whether to limit the scan to exported declarations, and adjust the column width. Use ↑/↓ to move between rows, type new values (comma-separated lists for the kinds), and press Enter once the validation message disappears.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/manager",
3
- "version": "1.4.11",
3
+ "version": "1.4.12",
4
4
  "description": "Interactive manager for pnpm monorepos (update/test/build/publish).",
5
5
  "license": "MIT",
6
6
  "type": "module",