gil/.editorconfig
Mateusz Łoskot 19c4efa3bc
Import pre-Boost history of GIL by Adobe to release notes (#405) [ci skip]
The log of significant changes prior the first release of GIL as part
of Boost was collected from https://stlab.adobe.com/gil/news.html site
and from the linked PDF documents with detailed descriptions.

The old history is very detailed (after the PDFs) but it is intersting.
It illustrates evolution of the library design and API, for example,
renaming of types or functions were renamed indicates evolution of
semantics and inter-relations of the library elements.
This is especially interseting in case of the complex types like
bit-aligned pixels and images, where does the concept of memunit
come from, etc.
2019-11-26 01:29:03 +01:00

45 lines
872 B
INI

# EditorConfig is awesome: http://EditorConfig.org
#
# top-most EditorConfig file
root = true
[*]
guidelines = 100
indent_size = 4
indent_style = space
max_line_length = 100
trim_trailing_whitespace = true
insert_final_newline = true
[*.{cpp,hpp}]
guidelines = 100
indent_size = 4
indent_style = space
max_line_length = 100
trim_trailing_whitespace = true
insert_final_newline = true
[*.{md,rst}]
guidelines = 78
indent_size = 2
indent_style = space
max_line_length = 79
trim_trailing_whitespace = false
insert_final_newline = true
[{Jamfile*,CMakeLists.txt,CMakeSettings.json,*.cmake}]
guidelines = 100
indent_size = 2
indent_style = space
max_line_length = 100
trim_trailing_whitespace = true
insert_final_newline = true
[*.yml]
guidelines = 100
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 100
trim_trailing_whitespace = true