From 12a3001aecef972381184130a333aac043397269 Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Thu, 10 Apr 2025 19:02:55 -0700 Subject: [PATCH] add editorconfig and zed settings --- .editorconfig | 10 ++++++++++ .zed/settings.json | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 .editorconfig create mode 100644 .zed/settings.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..202855d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +[*] +charset = utf-8 +insert_final_newline = true +end_of_line = lf + +indent_style = tab +indent_size = 2 +max_line_length = 100 +quote_type = single +trim_trailing_whitespace = true diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..240300b --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,7 @@ +// Folder-specific settings +// +// For a full list of overridable settings, and general information on folder-specific settings, +// see the documentation: https://zed.dev/docs/configuring-zed#settings-files +{ + "formatter": "prettier" +}