File: .editorconfig

package info (click to toggle)
papers 48.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,096 kB
  • sloc: ansic: 38,478; sh: 195; xml: 127; makefile: 117
file content (52 lines) | stat: -rw-r--r-- 814 bytes parent folder | download | duplicates (3)
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
# this file helps keeping consistent code style in all the project. IDEs will
# automatically use the code style as defined in this file
# see https://editorconfig.org/

root=true

# Unix-style newlines with a newline ending every file
[*]
end_of_line=lf
insert_final_newline=true
charset=utf-8
trim_trailing_whitespace=true

[*.{c,h}]
indent_style=tab
indent_size=8

[*.xml*]
indent_style=space
indent_size=2

[*.css]
indent_style=space
indent_size=4

[*.json]
indent_style=space
indent_size=4

[meson.build]
indent_style=space
indent_size=2

[snapcraft.yaml]
indent_style=space
indent_size=2

[.gitlab-ci.yml]
indent_style=space
indent_size=4

[ChangeLog*]
trim_trailing_whitespace=false

[NEWS*]
trim_trailing_whitespace=false

[*.po]
trim_trailing_whitespace=false

[/rust/**]
trim_trailing_whitespace = unset