From 9357214fcb5a6d3ca31b50629800a0af4557c9b6 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Thu, 23 Apr 2026 23:20:28 +0200 Subject: [PATCH] Add root editorconfig options file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..f18e0f5f1e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# Configures default editor settings for the repository. +# To learn more, visit the EditorConfig website: https://editorconfig.org. + +# This is top-most EditorConfig file for the repository. +root = true + +# Default configuration for all files in the repository. +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space + +# Configuration for common code and data file formats. +[*.{css,dart,json,yaml,yml}] +indent_size = 2 +trim_trailing_whitespace = true