https://github.com/TestRoots/watchdog
Raw File
Tip revision: 779124b763185e8f833d8c0d3eddfd3cbfcecee8 authored by Moritz Beller on 17 October 2018, 08:13:26 UTC
Merge pull request #327 from TestRoots/makeWDperformant
Tip revision: 779124b
.editorconfig
# EditorConfig is awesome: http://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
trim_trailing_whitespace = true

[*.{xml,target}]
indent_style = space
indent_size = 4

# Tab indentation (no size specified)
[*.java]
indent_style = tab
indent_size = 4

[MANIFEST.MF]
indent_style = space
indent_size = 1
back to top