@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.
Files changed (2) hide show
  1. package/README.md +11 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # editorconfig
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@sheplu/editorconfig.svg)](https://www.npmjs.com/package/@sheplu/editorconfig)
4
+ [![Quality gates](https://github.com/sheplu/editorconfig/actions/workflows/quality-gates.yaml/badge.svg)](https://github.com/sheplu/editorconfig/actions/workflows/quality-gates.yaml)
5
+ [![Node.js](https://img.shields.io/node/v/@sheplu/editorconfig.svg)](https://nodejs.org)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
- npm run rebuild:native
226
+ node --run rebuild:native
222
227
  ```
223
228
 
224
229
  Run them with:
225
230
 
226
231
  ```bash
227
- npm test # everything
228
- npm run test:unit # unit only — runs in ~50ms
229
- npm run test:integration # integration only — spawns the CLI
230
- npm run test:coverage. # coverage with 95% threshold
231
- npm run lint # oxlint
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sheplu/editorconfig",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "description": "CLI to generate and validate a consistent .editorconfig across your projects",
5
5
  "main": "index.js",
6
6
  "files": [