We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a423f commit 0849f59Copy full SHA for 0849f59
.flake8
@@ -0,0 +1,16 @@
1
+# flake8 is a Python linting tool run by pre-commit as declared by our
2
+# pre-commit-config.yaml file.
3
+#
4
+# This configuration is compatible with the autoformatter tool black, and
5
+# further relaxed to not bug us with too small details.
6
7
+# flake8 configuration reference:
8
+# https://flake8.pycqa.org/en/latest/user/configuration.html
9
10
+[flake8]
11
+max-line-length = 88
12
+extend-ignore = C, E, W
13
+
14
+# Adjustments to linting the binderhub repo
15
+builtins = c, load_subconfig
16
+exclude = versioneer.py,binderhub/_version.py
0 commit comments