File: .editorconfig

package info (click to toggle)
install-mimic 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: perl: 385; ansic: 200; makefile: 109; sh: 51
file content (67 lines) | stat: -rw-r--r-- 822 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# https://editorconfig.org/
#
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause

root = true

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

[*.1]
indent_style = tab
tab_size = 8

[*.c]
indent_style = tab
tab_size = 8

[*.md]
indent_style = space
indent_size = 2

[*.pl]
indent_style = tab
tab_size = 8

[*.rs]
indent_style = space
indent_size = 4

[*.sh]
indent_style = tab
tab_size = 8

[*.t]
indent_style = tab
tab_size = 8

[*.toml]
indent_style = space
indent_size = 2

[*.yml]
indent_style = space
indent_size = 2

[*.yaml]
indent_style = space
indent_size = 2

[dep5]
indent_style = space
indent_size = 2

[cpanfile]
indent_style = space
indent_size = 4

[Makefile]
indent_style = tab
tab_size = 8

[tox.ini]
indent_style = space
indent_size = 2