@owenlamont/ryl-linux-x64-musl 0.20.0 → 0.21.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 +7 -2
- package/bin/ryl +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,12 +29,17 @@ ryl enables no rules by default, so it needs a configuration that turns rules on
|
|
|
29
29
|
for a project, drop a `.ryl.toml` at the root (see
|
|
30
30
|
[Configuration](https://ryl-docs.pages.dev/getting-started/quickstart/)).
|
|
31
31
|
|
|
32
|
+
`ryl check` is the lint subcommand (a `ryl format` formatter is coming) and the
|
|
33
|
+
recommended form. Bare `ryl <paths>` still lints identically today but is being
|
|
34
|
+
phased out (a future release will deprecate it, then a later one will remove it), so
|
|
35
|
+
prefer `ryl check`.
|
|
36
|
+
|
|
32
37
|
```bash
|
|
33
38
|
# Using uv (Python)
|
|
34
|
-
uvx ryl -d 'extends: default' .
|
|
39
|
+
uvx ryl check -d 'extends: default' .
|
|
35
40
|
|
|
36
41
|
# Using npx (Node.js)
|
|
37
|
-
npx @owenlamont/ryl -d 'extends: default' .
|
|
42
|
+
npx @owenlamont/ryl check -d 'extends: default' .
|
|
38
43
|
```
|
|
39
44
|
|
|
40
45
|
For `prek` / `pre-commit` integration, see
|
package/bin/ryl
CHANGED
|
Binary file
|