@owenlamont/ryl-linux-x64-musl 0.19.0 → 0.19.1
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 +9 -7
- package/bin/ryl +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,18 +48,20 @@ npm install -g @owenlamont/ryl # npm
|
|
|
48
48
|
pip install ryl # pip
|
|
49
49
|
cargo install ryl # cargo
|
|
50
50
|
pixi global install ryl # conda-forge
|
|
51
|
+
winget install owenlamont.ryl # winget (Windows)
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
## Status and scope
|
|
54
55
|
|
|
55
|
-
- All 23 yamllint rules are implemented, plus
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
<https://ryl-docs.pages.dev/rules/>.
|
|
56
|
+
- All 23 yamllint rules are implemented, plus four ryl-only rules with no
|
|
57
|
+
yamllint equivalent (`tags`, `merge-keys`, `block-scalar-chomping`, and
|
|
58
|
+
`unicode-line-breaks`), configured in TOML only. The current rule reference
|
|
59
|
+
and per-rule pages are at <https://ryl-docs.pages.dev/rules/>.
|
|
59
60
|
- Auto-fixing (`--fix`) is supported for `braces`, `brackets`, `commas`,
|
|
60
|
-
`comments`, `comments-indentation`, `
|
|
61
|
-
`
|
|
62
|
-
|
|
61
|
+
`comments`, `comments-indentation`, `document-end`, `document-start`,
|
|
62
|
+
`empty-lines`, `new-line-at-end-of-file`, `new-lines`, `quoted-strings`,
|
|
63
|
+
and `trailing-spaces`. The set of rules that may apply fixes is
|
|
64
|
+
configurable via the TOML `[fix]` table.
|
|
63
65
|
- `--diff` previews those safe fixes as a unified diff on stdout instead
|
|
64
66
|
of writing them (modelled on `ruff check --diff`); it is mutually
|
|
65
67
|
exclusive with `--fix`, works with stdin, and exits `1` iff some file
|
package/bin/ryl
CHANGED
|
Binary file
|