@owenlamont/ryl-linux-x64-musl 0.7.0 → 0.9.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 +11 -5
- package/bin/ryl +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -197,8 +197,8 @@ Example benchmark figure (5x5 matrix, 5 runs per point):
|
|
|
197
197
|
for a full list of supported rules and their fixable status.
|
|
198
198
|
- TOML and YAML are not merged during discovery. If a TOML project config is
|
|
199
199
|
found, YAML project config discovery is skipped (and `ryl` prints a warning).
|
|
200
|
-
- Native fix policy
|
|
201
|
-
does not support
|
|
200
|
+
- Native fix policy and per-file ignores are TOML-only. YAML config remains
|
|
201
|
+
yamllint-compatible and does not support ryl-native settings.
|
|
202
202
|
- Per-file behavior: unless a global config is set via `--config-data`,
|
|
203
203
|
`--config-file`, or `YAMLLINT_CONFIG_FILE`, each file discovers its nearest
|
|
204
204
|
project config. Ignores apply to directory scans and explicit files (parity).
|
|
@@ -215,9 +215,9 @@ Example benchmark figure (5x5 matrix, 5 runs per point):
|
|
|
215
215
|
projection for `ryl.toml` / `.ryl.toml`. SchemaStore cannot target the
|
|
216
216
|
`[tool.ryl]` table inside `pyproject.toml`, so that remains covered by the
|
|
217
217
|
broader `pyproject.toml` schema association.
|
|
218
|
-
-
|
|
219
|
-
|
|
220
|
-
|
|
218
|
+
- Release-time SchemaStore sync updates `owenlamont/schemastore:ryl-schema-update`
|
|
219
|
+
after a release succeeds and prints the manual upstream PR details in the
|
|
220
|
+
workflow summary.
|
|
221
221
|
- Regenerate them with:
|
|
222
222
|
- `cargo run --quiet --bin ryl -- --print-toml-config-schema > ryl.toml.schema.json`
|
|
223
223
|
- `cargo run --quiet --bin ryl -- --print-yaml-config-schema > ryl.yaml.schema.json`
|
|
@@ -231,6 +231,12 @@ yaml-files = ["*.yaml", "*.yml"]
|
|
|
231
231
|
ignore = ["vendor/**", "generated/**"]
|
|
232
232
|
locale = "en_US.UTF-8"
|
|
233
233
|
|
|
234
|
+
[per-file-ignores]
|
|
235
|
+
"**/values.yaml" = ["document-start"]
|
|
236
|
+
"**/kustomization.yaml" = ["document-start"]
|
|
237
|
+
# `!` negates the pattern, so this ignores truthy outside Kubernetes manifests.
|
|
238
|
+
"!k8s/**.yaml" = ["truthy"]
|
|
239
|
+
|
|
234
240
|
[rules]
|
|
235
241
|
document-start = "disable"
|
|
236
242
|
|
package/bin/ryl
CHANGED
|
Binary file
|