{"id":15046138,"url":"https://github.com/j13k/yaml-lint","last_synced_at":"2025-04-07T11:05:35.463Z","repository":{"id":4806805,"uuid":"52863741","full_name":"j13k/yaml-lint","owner":"j13k","description":"A compact command line linting tool for validating YAML files.","archived":false,"fork":false,"pushed_at":"2024-10-29T09:03:49.000Z","size":298,"stargazers_count":14,"open_issues_count":3,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-29T10:56:58.047Z","etag":null,"topics":["command-line","lint","php","syntax-checker","yaml","yaml-lint","yamllint"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/j13k.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-01T09:15:41.000Z","updated_at":"2024-10-29T09:03:51.000Z","dependencies_parsed_at":"2023-07-05T17:15:27.188Z","dependency_job_id":"a5ccdb07-8ad1-45b1-ba4c-2606325db017","html_url":"https://github.com/j13k/yaml-lint","commit_stats":{"total_commits":77,"total_committers":10,"mean_commits":7.7,"dds":0.5844155844155844,"last_synced_commit":"8c3674f2935fec083feb750e14269ef6b6093d2c"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j13k%2Fyaml-lint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j13k%2Fyaml-lint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j13k%2Fyaml-lint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j13k%2Fyaml-lint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/j13k","download_url":"https://codeload.github.com/j13k/yaml-lint/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247640463,"owners_count":20971557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","lint","php","syntax-checker","yaml","yaml-lint","yamllint"],"created_at":"2024-09-24T20:52:45.723Z","updated_at":"2025-04-07T11:05:35.446Z","avatar_url":"https://github.com/j13k.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# yaml-lint\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE)\n[![Total Downloads][ico-downloads]][link-downloads]\n[![Monthly Downloads][ico-downloads-monthly]][link-downloads]\n[![CI][ico-github-ci]][link-github-ci]\n\nA compact command line linting tool for validating YAML files, using the parsing facility of\nthe [Symfony Yaml Component](https://github.com/symfony/yaml).\n\n## Usage\n\n```text\nusage: yaml-lint [options] [input source]\n\n  input source    Path to file(s), or \"-\" to read from standard input\n\n  -q, --quiet     Restrict output to syntax errors\n  -h, --help      Display this help\n  -V, --version   Display application version\n```\n\n## Install\n\n### Composer\n\nTo get started using yaml-lint in a project, install it with Composer:\n\n```bash\ncomposer require --dev j13k/yaml-lint\n```\n\nIt can then be run from the project's `vendor/bin` directory.\n\nTo set up yaml-lint globally, install it in the Composer home directory:\n\n```bash\ncomposer global require j13k/yaml-lint\n```\n\nIt can then be run from the `bin` directory of Composer home (typically  `~/.composer/vendor/bin`).\n\n### Binary\n\nA binary edition , `yaml-lint.phar`, is available for download\nwith [each release](https://github.com/j13k/yaml-lint/releases). This embeds the latest stable version of the Symfony\nYaml component that is current at the time of the release.\n\nThe binary can be conveniently installed using [PHIVE](https://phar.io/):\n\n```\nphive install yaml-lint\n```\n\n### Docker\n\nyaml-lint is bundled in the [phpqa Docker image](https://hub.docker.com/r/jakzal/phpqa/), which provides a suite of\nstatic analysis tools for PHP. See the [phpqa project](https://github.com/jakzal/phpqa) for [installation\nand usage instructions](https://github.com/jakzal/phpqa#running-tools).\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for information on what has changed recently.\n\n## Credits\n\n- [yaml-lint contributors][link-contributors]\n- [Symfony Yaml contributors](https://github.com/symfony/yaml/graphs/contributors)\n\n## License\n\nThe MIT License (MIT). Please see [LICENCE](LICENSE) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/j13k/yaml-lint.svg?style=flat-square\n\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n\n[ico-downloads]: https://img.shields.io/packagist/dt/j13k/yaml-lint.svg?style=flat-square\n\n[ico-downloads-monthly]: https://poser.pugx.org/j13k/yaml-lint/d/monthly\n\n[ico-github-ci]: https://github.com/j13k/yaml-lint/actions/workflows/ci.yml/badge.svg\n\n[link-packagist]: https://packagist.org/packages/j13k/yaml-lint\n\n[link-downloads]: https://packagist.org/packages/j13k/yaml-lint/stats\n\n[link-contributors]: https://github.com/j13k/yaml-lint/contributors\n\n[link-github-ci]: https://github.com/j13k/yaml-lint/actions/workflows/ci.yml\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj13k%2Fyaml-lint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj13k%2Fyaml-lint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj13k%2Fyaml-lint/lists"}