@owenlamont/ryl-linux-x64-musl 0.19.0 → 0.20.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 (3) hide show
  1. package/README.md +9 -7
  2. package/bin/ryl +0 -0
  3. 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 a ryl-only `tags` rule (forbids
56
- unsafe and non-portable YAML tags; configured in TOML only). The current rule
57
- reference and per-rule pages are at
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`, `new-line-at-end-of-file`,
61
- `new-lines`, and `quoted-strings`. The set of rules that may apply
62
- fixes is configurable via the TOML `[fix]` table.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owenlamont/ryl-linux-x64-musl",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Fast YAML linter inspired by yamllint",
5
5
  "author": "Owen Lamont",
6
6
  "license": "MIT",