Files
UnrealEngineUWP/.editorconfig
tim smith 30dac00836 Move verse editor configuration to the UE editor config.
#rb Andrew.Scheidecker

[CL 27280237 by tim smith in ue5-main branch]
2023-08-22 14:26:18 -04:00

41 lines
672 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 = 120
# 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