strictyaml icon indicating copy to clipboard operation
strictyaml copied to clipboard

Type-safe YAML parser and validator.

Results 96 strictyaml issues
Sort by recently updated
recently updated
newest added

The `docs/why/flow-style-removed.md` outlines the reasonable argument for disabling flow-style mappings: * The difference between inline mappings and explicit mappings is confusing. * The curly brackets can denote different things when...

I wonder if it would make sense to write a complete specification for StrictYAML that does not depend on the YAML specification (as in, you can write a compliant parser...

Warehouse now uses the project_urls provided to display links in the sidebar on [this screen](https://pypi.org/project/requests/), as well as including them in API responses to help the automation tool find the...

Feel free to raise an issue for any of the following: * Feature request Because, from what I have read, strictyaml is not parseable by a yaml parser it isn't...

Unless I am missing something, which is certainly possible, I do not think StrictYAML is correctly parsing documents that consist either of only comments or comments with a single scalar....

Does StriclYaml support nested sequences like e.g. `seq_of_seqs` ``` seq_of_seqs: - - "a" - "b" - - 1 - 2 ``` I could not find a corresponding section in the...

```yaml list: - value1 - value2 ``` will be parsed as: ```json { "list": [ "value1", "value2" ] } ``` But this: ```yaml list: - value1 - value2 ``` will...

Added allowing signed hexadecimal numbers. Story testing HexInt updated accordingly.

Feel free to raise an issue for any of the following: * Feature request I would like to see an example that shows all the features/syntax of a strictyaml document...

Feel free to raise an issue for any of the following: * Feature request There are no tests in the repository