{"id":13684295,"url":"https://github.com/manicmaniac/danger-danger_plugin_lint","last_synced_at":"2025-10-19T07:51:35.552Z","repository":{"id":62796739,"uuid":"562397268","full_name":"manicmaniac/danger-danger_plugin_lint","owner":"manicmaniac","description":"A Danger plugin to lint a Danger plugin","archived":false,"fork":false,"pushed_at":"2025-09-26T14:29:24.000Z","size":345,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T15:30:57.853Z","etag":null,"topics":["danger","danger-plugin","linter"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/danger-danger_plugin_lint","language":"Ruby","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/manicmaniac.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-06T09:13:52.000Z","updated_at":"2025-08-27T17:04:01.000Z","dependencies_parsed_at":"2023-12-14T20:49:55.897Z","dependency_job_id":"e2170777-5212-45a1-aedc-f07d6b073156","html_url":"https://github.com/manicmaniac/danger-danger_plugin_lint","commit_stats":{"total_commits":77,"total_committers":2,"mean_commits":38.5,"dds":"0.33766233766233766","last_synced_commit":"c77e567e701c4b0a5912d7f588ea551d2c4ab308"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/manicmaniac/danger-danger_plugin_lint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manicmaniac%2Fdanger-danger_plugin_lint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manicmaniac%2Fdanger-danger_plugin_lint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manicmaniac%2Fdanger-danger_plugin_lint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manicmaniac%2Fdanger-danger_plugin_lint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manicmaniac","download_url":"https://codeload.github.com/manicmaniac/danger-danger_plugin_lint/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manicmaniac%2Fdanger-danger_plugin_lint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279743122,"owners_count":26219621,"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","status":"online","status_checked_at":"2025-10-19T02:00:07.647Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["danger","danger-plugin","linter"],"created_at":"2024-08-02T14:00:31.973Z","updated_at":"2025-10-19T07:51:35.530Z","avatar_url":"https://github.com/manicmaniac.png","language":"Ruby","funding_links":[],"categories":["Plugins"],"sub_categories":["Ruby (danger)"],"readme":"# danger-danger\\_plugin\\_lint\n\n[![Test](https://github.com/manicmaniac/danger-danger_plugin_lint/actions/workflows/test.yml/badge.svg)](https://github.com/manicmaniac/danger-danger_plugin_lint/actions/workflows/test.yml)\n[![Maintainability](https://api.codeclimate.com/v1/badges/d52bec431b82f149bc59/maintainability)](https://codeclimate.com/github/manicmaniac/danger-danger_plugin_lint/maintainability)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/d52bec431b82f149bc59/test_coverage)](https://codeclimate.com/github/manicmaniac/danger-danger_plugin_lint/test_coverage)\n[![Gem Version](https://badge.fury.io/rb/danger-danger_plugin_lint.svg)](https://rubygems.org/gems/danger-danger_plugin_lint)\n\nA Danger plugin to lint Danger plugin.\n\nThis plugin does the almost same thing as `danger plugins lint` command but it runs on Danger.\n\n\u003cimg width=\"600\" alt=\"GitHub comment example\" src=\"https://user-images.githubusercontent.com/1672393/200974321-bb6a42d4-ce8e-4fc0-96f9-a8a3fc82b83c.png\"\u003e\n\n## Installation\n\nInstall the gem and add to the application's Gemfile by executing:\n\n    $ bundle add danger-danger_plugin_lint\n\nOr you can write the following code in your Gemfile.\n\n```ruby\ngem 'danger-peripher'\n```\n\nIf bundler is not being used to manage dependencies, install the gem by executing:\n\n    $ gem install danger-danger_plugin_lint\n\n## Usage\n\nIf you want to run this plugin in your plugin's repository, just add the following code in your Dangerfile.\n\n```ruby\nplugin_lint.lint_docs\n```\n\nIf you want to lint a plugin outside of your plugin's `lib` directory, you can specify the path to the plugin.\n\n```ruby\nplugin_lint.lint_docs '/path/to/other_plugin.rb'\n```\n\nOr you can specify a gem file.\n\n```ruby\nplugin_lint.lint_docs '/path/to/other_plugin.gem'\n```\n\nIf `warnings_as_errors` is set `true`, it reports anything as error.\n\n```ruby\nplugin_lint.lint_docs warnings_as_errors: true\n```\n\n## Development\n\nAfter checking out the repo, run `bundle install` to install dependencies. Then, run `bundle exec rake` to run the tests.\n\nTo install this gem onto your local machine, run `bundle exec rake install`.\nTo release a new version, update the version number in `lib/danger_plugin_lint/version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on [GitHub Issues](https://github.com/manicmaniac/danger-danger_plugin_lint).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanicmaniac%2Fdanger-danger_plugin_lint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanicmaniac%2Fdanger-danger_plugin_lint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanicmaniac%2Fdanger-danger_plugin_lint/lists"}