Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 611 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (19 loc) · 611 Bytes

Geo IP sets

Contributions are welcome.

Workflow

To do so, please follow the Git feature branch workflow.

Pre-commit Linting

Please setup flake8 linting as a pre-commit hook in your local repo.

The following minimal pre-commit-config.yaml is enough:

files: 'python/'
repos:
  - repo: https://github.com/pycqa/flake8
    rev: 3.9.1
    hooks:
      - id: flake8
        args: ['--max-line-length', '120']