### Listing 1: ~/.editorconfig ### Das Listing enthält Formatierungsanweisungen primär für Konfigurationsdateien und Skripts. # Root-Projektverzeichnis root = true [*] charset = utf-8 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.{conf,sh}] indent_style = space indent_size = 4 [*.service] indent_style = space indent_size = 2 insert_final_newline = false [*.{py,go,ps1}] indent_style = space indent_size = 2 trim_trailing_whitespace = true