[go: up one dir, main page]

File: .editorconfig

package info (click to toggle)
sorl-thumbnail 12.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,408 kB
  • sloc: python: 3,190; makefile: 129; sh: 11
file content (25 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (2)
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 https://EditorConfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8

[*.py]
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

[*.rst]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[*.yml]
indent_style = space
indent_size = 2