From e73f13473dae2a38097e9e47f93d692970c3b67d Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 14 Oct 2022 17:05:24 -0400 Subject: [PATCH] Add a .flake8 file for benchmarking --- scripts/.flake8 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scripts/.flake8 diff --git a/scripts/.flake8 b/scripts/.flake8 new file mode 100644 index 0000000000..817937e5aa --- /dev/null +++ b/scripts/.flake8 @@ -0,0 +1,19 @@ +[flake8] +exclude = + # Defaults + .svn, + CVS, + .bzr, + .hg, + .git, + __pycache__, + .tox, + .idea, + .mypy_cache, + .venv, + node_modules, + # Custom + _state_machine.py, + test_fstring.py, + bad_coding2.py, + badsyntax_*.py