https://github.com/CoolProp/CoolProp
Raw File
Tip revision: a2a7abb5ea331607da9ae4840b24a5bc03e18cfa authored by Jorrit Wronski on 14 June 2019, 10:08:54 UTC
Could this be a viable solution for #1833
Tip revision: a2a7abb
.editorconfig
# see editorconfig.org
root = true

# default settings for all file types
[*]
insert_final_newline = true
trim_trailing_whitespace = true

# settings per extension (alphabetically)
[{*.cmake,CMakeLists.txt}]
indent_size = 2
indent_style = space

[*.{cpp,h}]
charset = utf-8
indent_size = 4
indent_style = space

[*.json]
charset = utf-8
indent_size = 2
indent_style = space

[Makefile]
indent_size = 4
indent_style = tab

[*.md]
charset = utf-8
trim_trailing_whitespace = false

[*.py]
charset = utf-8
indent_size = 4
indent_style = space

[.travis.yml]
indent_size = 2
indent_style = space
back to top