Mirror of my GitHub Pages site www.spenser.black/
0

Configure Feed

Select the types of activity you want to include in your feed.

Add EditorConfig

authored by

Spenser Black and committed by
GitHub
(Jun 25, 2026, 11:16 AM UTC) 7b500ff7 0a162d6c

+52
+47
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + end_of_line = LF 5 + charset = utf-8 6 + trim_trailing_whitespace = true 7 + insert_final_newline = true 8 + 9 + # Astro 10 + [*.astro] 11 + indent_style = tab 12 + indent_size = 2 13 + 14 + # CSS 15 + [*.css] 16 + indent_style = space 17 + indent_size = 2 18 + 19 + # HTML 20 + [*.html] 21 + indent_style = space 22 + indent_size = 2 23 + 24 + # JavaScript 25 + [*.{js,cjs,mjs,jsx}] 26 + indent_style = space 27 + indent_size = 2 28 + 29 + # JSON (and with comments) 30 + [*.{json,jsonc}] 31 + indent_style = space 32 + indent_size = 2 33 + 34 + # Shell 35 + [*.{sh,bash}] 36 + indent_style = tab 37 + indent_size = 2 38 + 39 + # TypeScript 40 + [*.{ts,tsx}] 41 + indent_style = space 42 + indent_size = 2 43 + 44 + # YAML 45 + [*.{yml,yaml}] 46 + indent_style = space 47 + indent_size = 2
+5
.vscode/extensions.json
··· 1 + { 2 + "recommendations": [ 3 + "editorconfig.editorconfig" 4 + ] 5 + }