@alexgorbatchev/typescript-ai-policy 1.0.3 → 1.0.4
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,6 +149,15 @@ conflicting keys.
|
|
|
149
149
|
For Oxlint specifically, consumer configs are extension-only: if the callback tries to redefine any shared rule name,
|
|
150
150
|
the factory throws with guidance to change the shared package instead of overriding that rule downstream.
|
|
151
151
|
|
|
152
|
+
When you run Oxlint manually, use Bun to launch the CLI:
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
bun --bun oxlint .
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Treat `bun --bun oxlint ...` as the canonical invocation form for this package and for consumer repositories using
|
|
159
|
+
these TypeScript config entrypoints.
|
|
160
|
+
|
|
152
161
|
## Local package setup
|
|
153
162
|
|
|
154
163
|
This package also uses its own shared configs at the repository root:
|
package/package.json
CHANGED