We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.editorconfig
1 parent 7565e25 commit 40994c7Copy full SHA for 40994c7
.editorconfig
@@ -6,3 +6,21 @@ indent_size = 4
6
indent_style = space
7
max_line_length = 80
8
trim_trailing_whitespace = true
9
+
10
+[*.{py,pyi,pxd}]
11
+# https://peps.python.org/pep-0008/
12
+charset = utf-8
13
+end_of_line = lf
14
+indent_size = 4
15
+indent_style = space
16
+insert_final_newline = true
17
+trim_trailing_whitespace = true
18
19
+[*.py]
20
+# Keep in sync with `tools/lint_diff.ini` and `tools/linter.py`
21
+# https://pycodestyle.pycqa.org/en/latest/intro.html#configuration
22
+max_line_length = 88
23
24
+[*.pyi]
25
+# https://typing.readthedocs.io/en/latest/guides/writing_stubs.html#style-guide
26
+max_line_length = 130
0 commit comments