Skip to content

#34: Correctly export variable #52

#34: Correctly export variable

#34: Correctly export variable #52

Workflow file for this run

name: Linter
on:
pull_request
jobs:
check:
name: Run Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "*.py"
use-pylint: true
use-pycodestyle: true
use-flake8: true
use-black: true
use-mypy: true
use-isort: false
extra-pylint-options: "--rcfile=setup.cfg --max-line-length=120 --max-locals=25 --min-similarity-lines=10"
extra-mypy-options: "--ignore-missing-imports --show-error-codes"
extra-flake8-options: "--max-line-length=120 --ignore=E203"
extra-pycodestyle-options: "--max-line-length=120 --ignore=E203"