File: .editorconfig

package info (click to toggle)
python-coverage 7.8.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,188 kB
  • sloc: python: 31,123; ansic: 1,184; javascript: 773; makefile: 304; sh: 107; xml: 48
file content (50 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download | duplicates (13)
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
46
47
48
49
50
# debian/.editorconfig
# EditorConfig settings for Debian packaging files.
# Documentation: <URL:https://editorconfig.org/>.

# Is this the project-root configuration file?
root = false


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

# Text encoding name.
charset = utf-8

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

# How many columns (integer) for each indentation level.
indent_size = 4

# How many columns (integer) to represent a U+0009 TAB.
tab_width = 8

# How many characters (integer) before enforcing line wrap.
max_line_length = 79

# Remove trailing whitespace on each line?
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


[{*.mk,Makefile,rules}]
indent_style = tab


[*.patch]
trim_trailing_whitespace = false

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