{"id":13735420,"url":"https://github.com/maxkrivich/flake8-github","last_synced_at":"2025-07-05T15:03:29.187Z","repository":{"id":188009416,"uuid":"677831288","full_name":"maxkrivich/flake8-github","owner":"maxkrivich","description":":octocat: Flake8 formatter for GitHub Actions","archived":false,"fork":false,"pushed_at":"2025-01-06T20:01:40.000Z","size":598,"stargazers_count":5,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T11:38:10.010Z","etag":null,"topics":["flake8","flake8-extension","flake8-extensions","flake8-plugin","flake8-plugins","github-actions","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/flake8-github","language":"Python","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/maxkrivich.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"maxkrivich"}},"created_at":"2023-08-12T19:28:41.000Z","updated_at":"2024-12-14T21:16:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"727eb1c9-6377-44f1-b013-7dfd7f62d798","html_url":"https://github.com/maxkrivich/flake8-github","commit_stats":{"total_commits":37,"total_committers":4,"mean_commits":9.25,"dds":0.2432432432432432,"last_synced_commit":"4a694c214da8a4b22159e54e1f343107765a04df"},"previous_names":["maxkrivich/flake8-github"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkrivich%2Fflake8-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkrivich%2Fflake8-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkrivich%2Fflake8-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxkrivich%2Fflake8-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxkrivich","download_url":"https://codeload.github.com/maxkrivich/flake8-github/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254377315,"owners_count":22061118,"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":["flake8","flake8-extension","flake8-extensions","flake8-plugin","flake8-plugins","github-actions","python"],"created_at":"2024-08-03T03:01:06.674Z","updated_at":"2025-05-15T16:32:47.852Z","avatar_url":"https://github.com/maxkrivich.png","language":"Python","readme":"# flake8-github\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/maxkrivich/flake8-github/main.svg)](https://results.pre-commit.ci/latest/github/maxkrivich/flake8-github/main)\n[![License](https://img.shields.io/pypi/l/flake8-github.svg)](https://github.com/maxkrivich/flake8-github/blob/main/LICENSE)\n[![PyPI Version](https://img.shields.io/pypi/v/flake8-github.svg)](https://pypi.org/project/flake8-github/)\n[![Continues integration checks](https://github.com/maxkrivich/flake8-github/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/maxkrivich/flake8-github/actions/workflows/ci.yaml)\n\n\n\n\u003e This extension seamlessly integrates with Flake8, providing clear and elegant error annotations directly on GitHub's interface, making it easier than ever to identify and address code issues during pull request reviews.\n\n\u003cimg width=\"754\" alt=\"image\" src=\"https://github.com/maxkrivich/flake8-github/assets/12199867/1dda4022-0223-486d-ba8a-480338471a3d\"\u003e\n\n## Table of Contents\n\n- [flake8-github](#flake8-github)\n  - [Table of Contents](#table-of-contents)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Local Development Setup](#local-development-setup)\n  - [Contributing](#contributing)\n  - [License](#license)\n\n## Installation\n\nPrerequisites\n\n- flake8 = ^6.0.0\n\nYou can install `flake8-github` using pip:\n\n```sh\n$ pip install flake8-github\n```\n\n## Usage\nAfter installing the formatter, you can enable it in your Flake8 configuration. For example, in your `.flake8`, `setup.cfg` file:\n\n```\n[flake8]\nformat = github\n```\n\n\nRun Flake8 as usual to start using github formatter:\n\n```sh\n$ flake8 src/ --format=github\n```\n\n\n## Local Development Setup\n\nTo contribute to this project or develop the plugin further locally, follow these steps:\n\n1. Clone the repository:\n```sh\n$ git clone \u003chttps://github.com/your-username/flake8-github.git\u003e\n$ cd flake8-github\n```\n\n2. Create a virtual environment and install development dependencies:\n\n```sh\n$ pip install pre-commit poetry\n$ pre-commit install\n$ poetry install\n```\n\n3. How to bumpversion when you are done with the changes:\n```sh\n$ poetry self add poetry-bumpversion\n$ poetry version {major, minor, patch, etc.}\n```\n\nNow you're ready to make changes and test your plugin locally.\n\n\n## Contributing\n\nContributions are welcome! Please follow these guidelines:\n\n1. Fork the repository.\n2. Create a feature branch (git checkout -b feature/my-feature).\n3. Commit your changes (git commit -am 'Add some feature').\n4. Push to the branch (git push origin feature/my-feature).\n5. Create a new Pull Request.\n\nPlease ensure your code adheres to the project's coding standards and includes tests.\n\n\n## License\n\nThis project is licensed under MIT License - see the [LICENSE](https://github.com/maxkrivich/flake8-github/blob/master/LICENSE) file for details.\n","funding_links":["https://github.com/sponsors/maxkrivich"],"categories":["Formatters"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxkrivich%2Fflake8-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxkrivich%2Fflake8-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxkrivich%2Fflake8-github/lists"}