Add an .editorconfig file, so we can have some consistency in the project. (I don't care what settings we use, as long as we all use the same.) Use four spaces as default (Python default, as suggested by Henrik). - Legacy-Id: 10595 Note: SVN reference [10551] has been migrated to Git commit769d443581
Note: SVN reference [10553] has been migrated to Git commit82ad203627
17 lines
358 B
INI
17 lines
358 B
INI
# EditorConfig helps developers define and maintain consistent
|
|
# coding styles between different editors and IDEs
|
|
# editorconfig.org
|
|
|
|
root = true
|
|
|
|
# Settings for IETF datatracker
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
# to avoid tripping Henrik's commit hook:
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = false
|