From 2723e6c4cacce53e039126e0fb38d18c9cff0017 Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sun, 8 Mar 2026 17:28:09 -0400 Subject: [PATCH] style: replace em dashes with colons; add .editorconfig --- .editorconfig | 14 ++++++++++++++ .wiki/Home.md | 4 ++-- README.md | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bde399a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{dart,yaml,yml,json,md}] +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/.wiki/Home.md b/.wiki/Home.md index f857848..b0fc44f 100644 --- a/.wiki/Home.md +++ b/.wiki/Home.md @@ -16,5 +16,5 @@ print(greg!.toIso8601String().substring(0, 10)); // 2025-03-01 ## Pages -- [API Reference](API-Reference) — Full function and type reference -- [Calendar Systems](Calendar-Systems) — UAQ and FCNA algorithm details +- [API Reference](API-Reference): Full function and type reference +- [Calendar Systems](Calendar-Systems): UAQ and FCNA algorithm details diff --git a/README.md b/README.md index 42513ad..5c8e5a8 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ final h = toHijri( ## Architecture -The UAQ engine performs a binary search over the 184-entry table — O(log 183) per conversion. The FCNA engine computes new moon times using the Meeus Ch. 49 algorithm. The registry pattern lets consumers add custom calendar engines at runtime. +The UAQ engine performs a binary search over the 184-entry table: O(log 183) per conversion. The FCNA engine computes new moon times using the Meeus Ch. 49 algorithm. The registry pattern lets consumers add custom calendar engines at runtime. ## Compatibility