@owenlamont/ryl-linux-x64-musl 0.11.0 → 0.12.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 -2
  2. package/bin/ryl +0 -0
  3. 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
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.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Fast YAML linter inspired by yamllint",
5
5
  "author": "Owen Lamont",
6
6
  "license": "MIT",