@owenlamont/ryl-linux-x64-musl 0.11.0 → 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 +10 -4
- package/bin/ryl +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,12 +24,17 @@ Full documentation lives at <https://ryl-docs.pages.dev/>.
|
|
|
24
24
|
|
|
25
25
|
## Quick start
|
|
26
26
|
|
|
27
|
+
ryl enables no rules by default, so it needs a configuration that turns rules on.
|
|
28
|
+
`-d 'extends: default'` opts into yamllint's standard rule set for a one-off run;
|
|
29
|
+
for a project, drop a `.ryl.toml` at the root (see
|
|
30
|
+
[Configuration](https://ryl-docs.pages.dev/getting-started/quickstart/)).
|
|
31
|
+
|
|
27
32
|
```bash
|
|
28
33
|
# Using uv (Python)
|
|
29
|
-
uvx ryl .
|
|
34
|
+
uvx ryl -d 'extends: default' .
|
|
30
35
|
|
|
31
36
|
# Using npx (Node.js)
|
|
32
|
-
npx @owenlamont/ryl .
|
|
37
|
+
npx @owenlamont/ryl -d 'extends: default' .
|
|
33
38
|
```
|
|
34
39
|
|
|
35
40
|
For `prek` / `pre-commit` integration, see
|
|
@@ -46,8 +51,9 @@ cargo install ryl # cargo
|
|
|
46
51
|
|
|
47
52
|
## Status and scope
|
|
48
53
|
|
|
49
|
-
- All 23 yamllint rules are implemented
|
|
50
|
-
|
|
54
|
+
- All 23 yamllint rules are implemented, plus a ryl-only `tags` rule (forbids
|
|
55
|
+
unsafe and non-portable YAML tags; configured in TOML only). The current rule
|
|
56
|
+
reference and per-rule pages are at
|
|
51
57
|
<https://ryl-docs.pages.dev/rules/>.
|
|
52
58
|
- Auto-fixing (`--fix`) is supported for `braces`, `brackets`, `commas`,
|
|
53
59
|
`comments`, `comments-indentation`, `new-line-at-end-of-file`,
|
package/bin/ryl
CHANGED
|
Binary file
|