File: .editorconfig

package info (click to toggle)
editorconfig-core-py 0.12.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 220 kB
  • sloc: python: 502; sh: 16; makefile: 5
file content (45 lines) | stat: -rw-r--r-- 987 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# debian/.editorconfig
# EditorConfig settings for the Debian packaging files.
# Documentation: <URL:http://editorconfig.org/>.

# Is this the top-most EditorConfig config file in the code base?
root = false

# Match all file names, unless more specific match later.
[*]

# Text encoding name.
charset = utf-8

# Remove trailing whitespace on lines?
trim_trailing_whitespace = true

# End-of-line style (“lf”, “cr”, “crlf”).
end_of_line = lf

# Ensure file ends with a line break?
insert_final_newline = true

# Line length (characters) to force line wrapping (or “off” to disable).
max_line_length = 80

# Character to use for indentation (“tab” for U+0009, “space” for U+0020).
indent_style = space

# Number of columns for each indentation level.
indent_size = 4

[rules]
indent_style = tab
indent_size = 8
max_line_length = off

[*.py]
max_line_length = 80


# Local variables:
# coding: utf-8
# mode: conf
# End:
# vim: fileencoding=utf-8 filetype=dosini :