Skip to content

πŸ“ Update documentation - Paging and add Discord link #971

πŸ“ Update documentation - Paging and add Discord link

πŸ“ Update documentation - Paging and add Discord link #971

Workflow file for this run

name: βœ”οΈ Python lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Python lint
runs-on: ubuntu-latest
steps:
- name: Checkout pynab
uses: actions/checkout@v1
- name: Run Python lint checks
uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "nab*"
use-pylint: false
use-mypy: false
# https://github.com/PyCQA/pycodestyle/issues/373
extra-pycodestyle-options: "--ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 --exclude=*/migrations/"
extra-flake8-options: "--extend-ignore=E203,E501"
extra-black-options: "-l 79"
extra-isort-options: "-l 79 --profile black --indent 4"