We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5899f commit b3ce217Copy full SHA for b3ce217
.editorconfig
@@ -4,9 +4,18 @@ root = true
4
5
[*]
6
charset = utf-8
7
-trim_trailing_whitespace = true
8
end_of_line = lf
9
-indent_style = space
10
insert_final_newline = true
+indent_style = space
+indent_size = 2
11
+trim_trailing_whitespace = true
12
+
13
+[*.{py, pyi}]
14
15
indent_size = 4
-max_line_length = 80
16
17
+[Makefile]
18
+indent_style = tab
19
20
+[*.md]
21
+trim_trailing_whitespace = false
dump_env/cli.py
@@ -47,7 +47,8 @@ def main() -> NoReturn:
47
"""
48
Runs dump-env script.
49
50
- Example:
+ Example::
51
52
This example will dump all environ variables:
53
54
.. code:: bash
0 commit comments