@owenlamont/ryl-linux-x64-musl 0.10.1 → 0.11.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 +7 -0
  2. package/bin/ryl +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -57,6 +57,13 @@ cargo install ryl # cargo
57
57
  features that have no upstream equivalent: the `[fix]` table,
58
58
  `[per-file-ignores]`, and rule options such as
59
59
  `allow-double-quotes-for-escaping`.
60
+ - TOML assigns each file a source kind via the `[files]` table
61
+ (`yaml = [...]`, `markdown = [...]`). The legacy `yaml-files` key is YAML-only;
62
+ in TOML use `[files].yaml`.
63
+ - YAML embedded in Markdown (front matter and fenced `yaml`/`yml` blocks)
64
+ can be linted by listing globs under `[files].markdown`; diagnostics map back
65
+ to the Markdown file. It is off by default and check-only (`--fix` does not
66
+ modify Markdown). See <https://ryl-docs.pages.dev/markdown/>.
60
67
  - yamllint-style YAML configuration is also accepted (`.yamllint`,
61
68
  `.yamllint.yml`, `.yamllint.yaml`) for drop-in compatibility, including
62
69
  the built-in `default`, `relaxed`, and `empty` presets via `extends`.
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.10.1",
3
+ "version": "0.11.0",
4
4
  "description": "Fast YAML linter inspired by yamllint",
5
5
  "author": "Owen Lamont",
6
6
  "license": "MIT",