File: .editorconfig

package info (click to toggle)
assertj-core 3.26.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 30,760 kB
  • sloc: java: 228,622; xml: 2,350; sh: 752; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# EditorConfig: https://editorconfig.org/

# top-most EditorConfig file
root = true

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

# 2 space indentation for java, xml and yml files
[*.{java,xml,yml,sh}]
indent_style = space
indent_size = 2

# Maven POM code convention
[pom.xml]
max_line_length = 205