my system configurations ^-^
0
fork

Configure Feed

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

chore: editorconfig

willow 3bf8ff2a 9d1be940

+38
+38
.editorconfig
··· 1 + # EditorConfig helps developers define and maintain consistent 2 + # coding styles between different editors and IDEs 3 + # EditorConfig is awesome: https://EditorConfig.org 4 + 5 + root = true 6 + 7 + [*] 8 + charset = utf-8 9 + indent_size = 2 10 + indent_style = space 11 + end_of_line = lf 12 + insert_final_newline = true 13 + trim_trailing_whitespace = true 14 + 15 + # go 16 + [*.go] 17 + indent_style = tab 18 + indent_size = 4 19 + 20 + # python 21 + [*.{ini,py,py.tpl,rst}] 22 + indent_size = 4 23 + 24 + # rust 25 + [*.rs] 26 + indent_size = 4 27 + 28 + # documentation, utils 29 + [*.{md,mdx,diff}] 30 + trim_trailing_whitespace = false 31 + 32 + # windows shell scripts 33 + [*.{cmd,bat,ps1}] 34 + end_of_line = crlf 35 + 36 + # npins 37 + [.sources/sources.json] 38 + trim_trailing_whitespace = false