Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pep8 - cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pep8
blob: db9c9c7015d3ff3731e7e3037532805e3fa7160d (plain)
1
2
3
4
#!/bin/sh
set -e
grep -s -l '^#!/usr/bin/env python' * calm/* test/* | xargs python3 -m pycodestyle --count --show-source --max-line-length=240 --ignore=E129,E741
flake8 --ignore E129,E501,E741,F841