Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 513 Bytes

covio_yml.rst

File metadata and controls

24 lines (17 loc) · 513 Bytes

.covio.yml file

In this file you need to specifie project name and violations. Example for django project:

violations:
  pep8: pep8 . --exclude='*migrations*'
  sloccount: sloccount .

You can use full-length violation declaration:

violations:
    pep8: pep8 . --exclude='*migrations*'
    pip_review:
        command: pip-review
        nofail: true

nofail - set force success status to violation.