From af3c13504cb3eb5fd3545217f6ebc1ed961d45ee Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 20 Feb 2018 10:12:19 -0500 Subject: [PATCH] remove code style checking Signed-off-by: Kenneth Reitz --- docs/advanced.rst | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index d928aea7..6916e445 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -174,19 +174,6 @@ Example:: ✨🍰✨ -☤ Code Style Checking ---------------------- - -Pipenv has `Flake 8 `_ built into it. You can check the style of your code like so, without installing anything:: - - $ cat t.py - import requests - - $ pipenv check --style t.py - t.py:1:1: F401 'requests' imported but unused - t.py:1:16: W292 no newline at end of file - -Super useful :) ☤ Open a Module in Your Editor ------------------------------