We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 821cd31 commit 4f1a5fbCopy full SHA for 4f1a5fb
.flake8
@@ -0,0 +1,13 @@
1
+[flake8]
2
+doctests = 1
3
+ignore =
4
+ # black takes care of line length
5
+ E501,
6
+ # black takes care of where to break lines
7
+ W503,
8
+ # black takes care of spaces within slicing (list[:])
9
+ E203,
10
+ # black takes care of spaces after commas
11
+ E231,
12
+ # as one has to use self.XX it should not be a problem
13
+ A003,
pyproject.toml
@@ -44,3 +44,16 @@ test = ["pytest"]
44
45
[project.entry-points."flake8.extension"]
46
A00 = "flake8_builtins:BuiltinsChecker"
47
+
48
+[tool.isort]
49
+profile = "plone"
50
51
+[tool.black]
52
+target-version = ["py38"]
53
+skip-string-normalization = true
54
55
+[tool.check-manifest]
56
+ignore = [
57
+ ".vscode/*",
58
+ "venv/*",
59
+]
0 commit comments