https://github.com/Radiomics/pyradiomics
Raw File
Tip revision: 110aa14b6840a3e07a3ff9d1c810dfc0c1c77d60 authored by Joost van Griethuysen on 13 June 2022, 14:39:14 UTC
BUG: Fix error in passing PyPi credentials
Tip revision: 110aa14
.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