File: .editorconfig

package info (click to toggle)
python-django-simple-history 3.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,124 kB
  • sloc: python: 8,454; makefile: 186
file content (25 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://EditorConfig.org

root = true

[*]
charset = utf-8
indent_style = space
end_of_line = lf
insert_final_newline = true
max_line_length = 88
trim_trailing_whitespace = true

[*.{py,rst,ini}]
indent_size = 4

[*.{html,yml}]
indent_size = 2

[LICENSE.txt]
end_of_line = crlf
insert_final_newline = false

[Makefile]
indent_style = tab