Add config files by default
This commit is contained in:
28
.editorconfig
Normal file
28
.editorconfig
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# EditorConfig helps developers define and maintain consistent
|
||||||
|
# coding styles between different editors and IDEs
|
||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# top-most EditorConfig file
|
||||||
|
|
||||||
|
# Baseline
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
tab_width = 4
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
# ReSharper properties
|
||||||
|
resharper_csharp_insert_final_newline = true
|
||||||
|
|
||||||
|
# Documentation, Utils
|
||||||
|
[*.{md,mdx,diff}]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
# Windows shell scripts
|
||||||
|
[*.{cmd,bat,ps1}]
|
||||||
|
end_of_line = crlf
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -21,8 +21,9 @@
|
|||||||
# Do not ignore git files in the root of the repo.
|
# Do not ignore git files in the root of the repo.
|
||||||
!/.git*
|
!/.git*
|
||||||
|
|
||||||
# Do not ignore current project's `.uproject`.
|
# Do not ignore current project's `.uproject` and config
|
||||||
!/*.uproject
|
!/*.uproject
|
||||||
|
!/*.editorconfig
|
||||||
|
|
||||||
# Do not ignore source, config and plugins dirs.
|
# Do not ignore source, config and plugins dirs.
|
||||||
!/Source/**
|
!/Source/**
|
||||||
|
|||||||
2
Config/DefaultEditor.ini
Normal file
2
Config/DefaultEditor.ini
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[SystemSettingsEditor]
|
||||||
|
r.Editor.SkipSourceControlCheckForEditablePackages = 1
|
||||||
7
Config/DefaultEditorPerProjectUserSettings.ini
Normal file
7
Config/DefaultEditorPerProjectUserSettings.ini
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[/Script/UnrealEd.EditorLoadingSavingSettings]
|
||||||
|
bSCCAutoAddNewFiles=False
|
||||||
|
bAutomaticallyCheckoutOnAssetModification=True
|
||||||
|
bPromptForCheckoutOnAssetModification=False
|
||||||
|
|
||||||
|
[/Script/UnrealEd.EditorPerProjectUserSettings]
|
||||||
|
bAutoloadCheckedOutPackages=True
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
# Unreal Engine 5 Starter template
|
# Unreal Engine 5 Starter template
|
||||||
|
|
||||||
|
Forked from https://github.com/StpGabriel/unreal-engine-5-template
|
||||||
Unreal Engine 5 Starter template for Git. A correct `git` setup example _with [`git-lfs`](https://git-lfs.github.com/)_ for Unreal Engine 5 and Unreal Engine 4 projects.
|
Unreal Engine 5 Starter template for Git. A correct `git` setup example _with [`git-lfs`](https://git-lfs.github.com/)_ for Unreal Engine 5 and Unreal Engine 4 projects.
|
||||||
|
|
||||||
## Version Management Design and Conventions
|
## Version Management Design and Conventions
|
||||||
|
|||||||
Reference in New Issue
Block a user