no-mistakes 0.2.3 → 0.3.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 +9 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,5 +11,14 @@ npx no-mistakes symbols src/utils.mts --json
11
11
  npx no-mistakes check --json
12
12
  ```
13
13
 
14
+ External `no-mistakes-*` executables on `PATH` can be invoked as subcommands.
15
+ For example, after installing `no-mistakes-scripts`:
16
+
17
+ ```bash
18
+ npm install --save-dev no-mistakes-scripts
19
+ npx no-mistakes rust-no-inline-tests crates/*/src
20
+ npx no-mistakes rust-max-lines-per-file crates/*/src crates/*/tests
21
+ ```
22
+
14
23
  See the full documentation in [docs/](../../docs/README.md) and the
15
24
  [CLI reference](../../docs/cli-reference.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "no-mistakes",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "Static codebase analysis tools for TS/JS dependencies, dependents, and symbols",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -24,6 +24,6 @@
24
24
  "postinstall": "node scripts/install.js"
25
25
  },
26
26
  "dependencies": {
27
- "no-mistakes-core": "^0.2.3"
27
+ "no-mistakes-core": "^0.3.0"
28
28
  }
29
29
  }