Files
UnrealEngine/.editorconfig
2025-05-18 13:04:45 +08:00

51 lines
1015 B
INI

# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Baseline
[*]
charset = utf-8
indent_style = tab
indent_size = 4
tab_width = 4
trim_trailing_whitespace = false
max_line_length = 150
cpp_indent_lambda_braces_when_parameter = true
# ReSharper properties
resharper_cpp_keep_user_linebreaks = true
resharper_cpp_wrap_lines = true
resharper_cpp_wrap_before_colon = true
resharper_cpp_line_break_before_comma_in_member_initializer_lists = true
# MSBuild
[*.{csproj,proj,projitems,shproj,fsproj,target,props}]
indent_style = space
indent_size = 2
# XML config files
[*.{config,nuspec,resx,natvis}]
indent_style = space
indent_size = 2
# Python files
[*.py]
indent_style = space
indent_size = 4
# YAML files
[*.yaml]
indent_style = space
indent_size = 2
# Settings for Verse source files
[*.{verse,versetest}]
indent_style = space
indent_size = 4
tab_width = 4
max_line_length = off
# Copyright
file_header_template =// Copyright Epic Games, Inc. All Rights Reserved.