summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-02-21 12:40:20 +0100
committerGitHub <noreply@github.com>2020-02-21 12:40:20 +0100
commit567547fa3ba3f11ee4f2dc9e73d37a146fe49e1b (patch)
treefdfa665b3dc017b974a762f1e2e697f267216751 /.flake8
parentf2e0c98ec0348810afe0e12347991438123c86f1 (diff)
downloadpsutil-567547fa3ba3f11ee4f2dc9e73d37a146fe49e1b.tar.gz
Git hook for renamed/added/deleted files + flake8 print() + tidelift (#1704)
Diffstat (limited to '.flake8')
-rw-r--r--.flake810
1 files changed, 10 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 00000000..6581552a
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,10 @@
+# Configuration file for flake 8. This is used by "make lint" and by the
+# GIT commit hook script.
+# T001 = print() statement
+
+[flake8]
+per-file-ignores =
+ setup.py:T001
+ scripts/*:T001
+ psutil/tests/runner.py:T001
+ psutil/tests/test_memory_leaks.py:T001