aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Christopher Goes <[email protected]>2019-03-24 17:23:14 -0600
committerGravatar Christopher Goes <[email protected]>2019-03-24 17:23:14 -0600
commit4b3e724d34ffc85a7d62bbc93084cee2859dc3a5 (patch)
tree13eff72ac60b860f12c2083fccdce19c385c0251 /Pipfile
parentAdd D400 to ignored flake8 rules (diff)
parentMerge pull request #11 from python-discord/add-flake8-extensions (diff)
Merge branch 'master' into flake8-updates
# Conflicts: # .flake8 # Pipfile # Pipfile.lock
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index 11e9243..e881d52 100644
--- a/Pipfile
+++ b/Pipfile
@@ -19,12 +19,18 @@ pytest-dependency = "*"
pre-commit = "*"
flake8 = "*"
flake8-docstrings = "*"
+flake8-bugbear = "*"
+flake8-import-order = "*"
+flake8-tidy-imports = "*"
+flake8-todo = "*"
+flake8-string-format = "*"
[requires]
python_version = "3.6"
[scripts]
lint = "flake8"
+precommit = "pre-commit install"
test = "py.test tests --cov . --cov-report term-missing -v"
report = "py.test tests --cov . --cov-report=html"
snekbox = "python snekbox.py"