From 131c3dc7b966e3db929c0a10e62b9ab5275803e1 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 23 Aug 2023 14:07:40 -0400 Subject: [PATCH] add flake8 config --- .flake8 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..42bec18 --- /dev/null +++ b/.flake8 @@ -0,0 +1,12 @@ +[flake8] +ignore = E501, E302 +exclude = + # No need to traverse our git directory + .git, + # There's no value in checking cache directories + __pycache__, + # The conf file is mostly autogenerated, ignore it + docs/source/conf.py, + # This contains our built documentation + build, +max-complexity = 10