Skip to content

Commit db866cb

Browse files
committed
README/editorconfig: Add .editorconfig to improve editing consistency.
Add small section in README to document the benefits.
1 parent 10e02d0 commit db866cb

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.editorconfig

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.{py,pyi}]
14+
max_line_length = 88
15+
16+
[*.{md,yaml,yml}]
17+
indent_size = 2
18+
19+
[Makefile]
20+
indent_style = tab
21+
22+
[*.diff]
23+
trim_trailing_whitespace = false
24+
25+
[.git/*]
26+
trim_trailing_whitespace = false

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,15 @@ If using make with pip, running `make` will ensure the development environment
494494
is up to date with the specified dependencies, useful after fetching from git
495495
and rebasing.
496496

497+
#### Editing the source
498+
499+
Pick your favorite text editor or development environment!
500+
501+
The source includes an `.editorconfig` file which enables many editors to
502+
automatically configure themselves to produce files which meet the minimum
503+
requirements for the project. See https://editorconfig.org for editor support;
504+
note that some may require plugins if you wish to use this feature.
505+
497506
#### Passing linters and automated tests
498507

499508
The linters and automated tests (pytest) are run in CI (GitHub Actions) when

0 commit comments

Comments
 (0)