From e20256d57a98b4d295706aa4255a4d13e4756822 Mon Sep 17 00:00:00 2001 From: Anthony James Padavano Date: Sun, 21 Jun 2026 22:27:12 -0400 Subject: [PATCH 1/2] chore: port .editorconfig from org-dotgithub (activation audit kill) --- .editorconfig | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0af04e1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,34 @@ +# EditorConfig -- https://editorconfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 2 + +[*.{py,pyi}] +indent_size = 4 + +[*.{go]] +indent_style = tab + +[*.{rs}] +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab + +[*.{sh,bash,zsh}] +indent_size = 2 + +[*.yaml,ydl] +indent_size = 2 + +[*.{toml}] +indent_size = 2 From ad5925aab2c051708c3587725f29bc216599e2ce Mon Sep 17 00:00:00 2001 From: Anthony James Padavano Date: Sun, 21 Jun 2026 22:27:25 -0400 Subject: [PATCH 2/2] chore: port .gitattributes from org-dotgithub (activation audit kill) --- .gitattributes | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a376955 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,72 @@ +# Auto-detect text files and normalize line endings + + * text=auto + +# Source code +*.py text diff=python +*.ts text diff=typescript +*.tsx text diff=typescript +*.js text diff=javascript +*.jsx text diff=javascript +*.go text diff=go +*.rs text diff=rust +*.rb text diff=ruby +*.sh text eol=lf diff=bash +*.bash text eol=lf diff=bash +*.zsh text eol=lf diff=bash +*.lua text + +# Configuration +*.json text +*.yaml text +*.yml text +*.toml text +*.cfg text +*.ini text +*.conf text +*.env text + +# Templates +*.tmpl text +*.j2 text + +# Documentation +*.md text diff=markdown +*.txt text +*.rst text + +# Web +*.html text diff=html +*.css text diff=css +*.scss text diff=css +*.astro text +*.svg text + +# Build / lock files +package-lock.json text -diff +yarn.lock text -diff +Cargo.lock text -diff +poetry.lock text -diff + +# Binary +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.webp binary +*.woff binary +*.woff2 binary +*.ttf binary +*.eot binary +*.pdf binary +*.zip binary +*.gz binary +*.tar binary +*.db binary +*.sqlite binary + +# Force LF for scripts +Makefile text eol=lf +Dockerfile text eol=lf +justfile text eol=lf