From 7e2b95b8c48c57a00b4b2fab76703c1e724b96e2 Mon Sep 17 00:00:00 2001 From: Martin Whitehouse Date: Fri, 22 Jul 2022 01:06:23 +0200 Subject: [PATCH] pycodestyle section added Will format with, max line length 120, recursively; inplace ignoring migrations --- .flake8 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.flake8 b/.flake8 index 0daf1543..4bbce879 100644 --- a/.flake8 +++ b/.flake8 @@ -2,3 +2,10 @@ max-line-length = 120 exclude = .git,__pycache__,.tox,.eggs,*.egg,node_modules,.venv,migrations,docs,demo,tests,setup.py import-order-style = pep8 + +[pycodestyle] +max-line-length = 120 +exclude = "migrations" +in-place = true +recursive = true +