├── .gitignore ├── Pipfile ├── README.rst ├── safeyaml.md ├── safeyaml.py ├── tests.py ├── tests ├── fix │ ├── nospace.yaml │ ├── nospace.yaml.output │ ├── unquoted.yaml │ └── unquoted.yaml.output └── validate │ ├── 0.yaml │ ├── 0005_bad.yaml │ ├── 0005_bad.yaml.error │ ├── 1.yaml │ ├── 2.yaml │ ├── 3.yaml │ └── 4.yaml └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/Pipfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/README.rst -------------------------------------------------------------------------------- /safeyaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/safeyaml.md -------------------------------------------------------------------------------- /safeyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/safeyaml.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests.py -------------------------------------------------------------------------------- /tests/fix/nospace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/fix/nospace.yaml -------------------------------------------------------------------------------- /tests/fix/nospace.yaml.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/fix/nospace.yaml.output -------------------------------------------------------------------------------- /tests/fix/unquoted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/fix/unquoted.yaml -------------------------------------------------------------------------------- /tests/fix/unquoted.yaml.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/fix/unquoted.yaml.output -------------------------------------------------------------------------------- /tests/validate/0.yaml: -------------------------------------------------------------------------------- 1 | { "a" :1, "b": 2 } 2 | -------------------------------------------------------------------------------- /tests/validate/0005_bad.yaml: -------------------------------------------------------------------------------- 1 | "name" 2 | -------------------------------------------------------------------------------- /tests/validate/0005_bad.yaml.error: -------------------------------------------------------------------------------- 1 | NoRootObject:6 2 | -------------------------------------------------------------------------------- /tests/validate/1.yaml: -------------------------------------------------------------------------------- 1 | # test 2 | - 1 3 | - 4 | name: -3 5 | -------------------------------------------------------------------------------- /tests/validate/2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/validate/2.yaml -------------------------------------------------------------------------------- /tests/validate/3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/validate/3.yaml -------------------------------------------------------------------------------- /tests/validate/4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tests/validate/4.yaml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imbal/safeyaml/HEAD/tox.ini --------------------------------------------------------------------------------