Skip to content

Commit b3ce217

Browse files
committed
Fixed editorconfig
1 parent 8b5899f commit b3ce217

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

Diff for: .editorconfig

+12-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,18 @@ root = true
44

55
[*]
66
charset = utf-8
7-
trim_trailing_whitespace = true
87
end_of_line = lf
9-
indent_style = space
108
insert_final_newline = true
9+
indent_style = space
10+
indent_size = 2
11+
trim_trailing_whitespace = true
12+
13+
[*.{py, pyi}]
14+
indent_style = space
1115
indent_size = 4
12-
max_line_length = 80
16+
17+
[Makefile]
18+
indent_style = tab
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

Diff for: dump_env/cli.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def main() -> NoReturn:
4747
"""
4848
Runs dump-env script.
4949
50-
Example:
50+
Example::
51+
5152
This example will dump all environ variables:
5253
5354
.. code:: bash

0 commit comments

Comments
 (0)