diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-11 12:35:27 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-11 12:35:27 +0200 |
commit | 4788f54d9767425bf5435b1cc940885d357795c5 (patch) | |
tree | c9e753d734577afbe672b8195fc3ed1288854fd9 | |
parent | 8613f346e83c9cf39b81a92cee1c53019fbdca0b (diff) | |
parent | 14dee6e4b0f6fc483c2024527d6cf08615b6bfef (diff) | |
download | redot-engine-4788f54d9767425bf5435b1cc940885d357795c5.tar.gz |
Merge pull request #96845 from bruvzg/edconfig
[Editor] Add .editorconfig to the projects.
-rw-r--r-- | editor/editor_paths.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/editor/editor_paths.cpp b/editor/editor_paths.cpp index 7f24e8fd2e..ff869f8a8a 100644 --- a/editor/editor_paths.cpp +++ b/editor/editor_paths.cpp @@ -245,7 +245,7 @@ EditorPaths::EditorPaths() { } } - // Check that the project data directory '.gdignore' file exists + // Check that the project data directory `.gdignore` file exists. String project_data_gdignore_file_path = project_data_dir.path_join(".gdignore"); if (!FileAccess::exists(project_data_gdignore_file_path)) { // Add an empty .gdignore file to avoid scan. @@ -253,10 +253,26 @@ EditorPaths::EditorPaths() { if (f.is_valid()) { f->store_line(""); } else { - ERR_PRINT("Failed to create file " + project_data_gdignore_file_path); + ERR_PRINT("Failed to create file " + project_data_gdignore_file_path.quote() + "."); } } + // Check that `.editorconfig` file exists. + String project_editorconfig_path = "res://.editorconfig"; + if (!FileAccess::exists(project_editorconfig_path)) { + Ref<FileAccess> f = FileAccess::open(project_editorconfig_path, FileAccess::WRITE); + if (f.is_valid()) { + f->store_line("root = true"); + f->store_line(""); + f->store_line("[*]"); + f->store_line("charset = utf-8"); + f->close(); + } else { + ERR_PRINT("Failed to create file " + project_editorconfig_path.quote() + "."); + } + FileAccess::set_hidden_attribute(project_editorconfig_path, true); + } + Engine::get_singleton()->set_shader_cache_path(project_data_dir); // Editor metadata dir. |