https://github.com/Radiomics/pyradiomics
Raw File
Tip revision: 146e3bd0971336913f9c9f49ce535bc4663ca5c2 authored by Andrey Fedorov on 03 January 2024, 22:30:34 UTC
Merge pull request #857 from DanXieJY/SafeLoadRemove
Tip revision: 146e3bd
.editorconfig
# EditorConfig: 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

# Set default charset
[**.py]
indent_style = space
indent_size = 2
charset = utf-8

# Set indentation for C
[**.{c,h}]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[**CMakeLists.txt]
indent_style = space
indent_size = 2
back to top