Metadata-Version: 2.1
Name: pylint-codeclimate
Version: 1.2.2
Summary: Quick and dirty pylint codeclimate reporter plugin
Author-email: Julien Lecomte <julien@lecomte.at>
License: MIT
Project-URL: Homepage, https://gitlab.com/jlecomte/projects/pylint-codeclimate
Project-URL: Documentation, https://gitlab.com/jlecomte/projects/python/pylint-codeclimate/-/blob/master/readme.md
Project-URL: Source code, https://gitlab.com/jlecomte/projects/python/pylint-codeclimate
Project-URL: Bug tracker, https://gitlab.com/jlecomte/projects/python/pylint-codeclimate/-/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

[![license](https://img.shields.io/badge/license-MIT-brightgreen)](https://spdx.org/licenses/MIT.html)
[![pipelines](https://gitlab.com/jlecomte/projects/python/pylint-codeclimate/badges/master/pipeline.svg)](https://gitlab.com/jlecomte/projects/python/pylint-codeclimate/pipelines)
[![coverage](https://gitlab.com/jlecomte/projects/python/pylint-codeclimate/badges/master/coverage.svg)](https://jlecomte.gitlab.io/projects/python/pylint-codeclimate/coverage/index.html)

# pylint code climate

A quick and dirty helper script to report pylint results in a json file that will be accepted by GitLab CI.

## Installation from PyPI

You can install the latest version from PyPI package repository.

~~~bash
python3 -mpip install -U pylint-codeclimate
~~~

## GitLab CI Usage

Sample gitlab-ci.yml snippet for coverage:

~~~yaml
coverage:
  script:
    - python3 -m pylint  --recursive y --output-format=codeclimate:pylint.json myproject
  artifacts:
    when: always
    reports:
      codequality: pylint.json
~~~

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Locations

  * GitLab: [https://gitlab.com/jlecomte/projects/python/pylint-codeclimate](https://gitlab.com/jlecomte/projects/python/pylint-codeclimate)
  * PyPi: [https://pypi.org/project/pylint-codeclimate](https://pypi.org/project/pylint-codeclimate)
