charls/.editorconfig
Victor Derks 230715737d
Add precompiled header to CharLS library build (#340)
All modern C++ compiler support precompiled headers, add one to increase build performance.
2025-01-18 16:54:35 +01:00

29 lines
464 B
INI

# SPDX-FileCopyrightText: © 2016 Team CharLS
# SPDX-License-Identifier: BSD-3-Clause
root = true
# Default settings
[*]
charset = utf-8
indent_style = space
trim_trailing_whitespace = true
spelling_exclusion_path = spelling.dic
[*.md]
trim_trailing_whitespace = false
insert_final_newline = true
[*.{h,cpp,c}]
indent_size = 4
insert_final_newline = true
[CMakeLists.txt]
indent_size = 2
[*.manifest]
indent_size = 2
[*.props, .runsettings]
indent_size = 2