Skip to content

Commit ff1bdf6

Browse files
authored
Add .editorconfig (#598)
1 parent d7be434 commit ff1bdf6

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.editorconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# https://editorconfig.org/
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
charset = utf-8
12+
13+
[*.py]
14+
max_line_length = 88
15+
16+
[*.toml]
17+
indent_size = 2
18+
19+
[docs/**.rst]
20+
max_line_length = 79
21+
22+
[*.{yaml,yml}]
23+
indent_size = 2

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include LICENSE
22
include MANIFEST.in
3+
include .editorconfig
34
include *.yaml
45
include pyproject.toml
56
include *.md

0 commit comments

Comments
 (0)