@sheplu/editorconfig 0.12.1 → 0.13.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/README.md +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# editorconfig
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@sheplu/editorconfig)
|
|
4
|
+
[](https://github.com/sheplu/editorconfig/actions/workflows/quality-gates.yaml)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
3
8
|
A small CLI to manage a **consistent `.editorconfig`** across your projects.
|
|
4
9
|
|
|
5
10
|
- ✅ Generate a sane default `.editorconfig` in seconds
|
|
@@ -218,17 +223,17 @@ Tests live under `test/` and are split by scope:
|
|
|
218
223
|
`node-pty` ships a native binding that npm normally compiles via a postinstall script. This repo sets `ignore-scripts=true` in `.npmrc`, so after `npm install` you need to build it once:
|
|
219
224
|
|
|
220
225
|
```bash
|
|
221
|
-
|
|
226
|
+
node --run rebuild:native
|
|
222
227
|
```
|
|
223
228
|
|
|
224
229
|
Run them with:
|
|
225
230
|
|
|
226
231
|
```bash
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
+
node --run test # everything
|
|
233
|
+
node --run test:unit # unit only — runs in ~50ms
|
|
234
|
+
node --run test:integration # integration only — spawns the CLI
|
|
235
|
+
node --run test:coverage # coverage with 95% threshold
|
|
236
|
+
node --run lint # oxlint
|
|
232
237
|
```
|
|
233
238
|
|
|
234
239
|
CI runs lint, audit, and the full suite on every PR across Node 24 / 26.
|