lol
0
fork

Configure Feed

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

.editorconfig: move subfolder config into separate .editorconfig files

This avoids paths in the top-level file getting out-of-sync, because the
.editorconfig files would be moved together with the files they target.

+34 -40
+3 -40
.editorconfig
··· 85 85 [eggs.nix] 86 86 trim_trailing_whitespace = unset 87 87 88 - [nixos/modules/services/networking/ircd-hybrid/*.{conf,in}] 89 - trim_trailing_whitespace = unset 90 - 91 - [pkgs/build-support/dotnet/dotnetenv/Wrapper/**] 92 - end_of_line = unset 93 - indent_style = unset 94 - insert_final_newline = unset 95 - trim_trailing_whitespace = unset 96 - 97 88 [registry.dat] 98 89 end_of_line = unset 99 90 insert_final_newline = unset 100 91 101 - [pkgs/development/haskell-modules/hackage-packages.nix] 102 - indent_style = unset 103 - trim_trailing_whitespace = unset 104 - 105 - [pkgs/misc/documentation-highlighter/**] 106 - insert_final_newline = unset 107 - 108 - [pkgs/servers/dict/wordnet_structures.py] 109 - trim_trailing_whitespace = unset 110 - 111 - [pkgs/by-name/ti/timidity/timidity.cfg] 112 - trim_trailing_whitespace = unset 113 - 114 - [pkgs/tools/security/qdigidoc/vendor/*] 115 - end_of_line = unset 116 - insert_final_newline = unset 117 - trim_trailing_whitespace = unset 118 - 119 - [pkgs/by-name/ov/ovftool/*.ova] 120 - end_of_line = unset 121 - insert_final_newline = unset 122 - trim_trailing_whitespace = unset 123 - charset = unset 124 - 125 - [lib/tests/*.plist] 126 - indent_style = tab 127 - insert_final_newline = unset 128 - 129 - [pkgs/kde/generated/**] 130 - insert_final_newline = unset 131 - end_of_line = unset 92 + # Keep this hint at the bottom: 93 + # Please don't add entries for subfolders here. 94 + # Create <subfolder>/.editorconfig instead.
+3
lib/tests/.editorconfig
··· 1 + [*.plist] 2 + indent_style = tab 3 + insert_final_newline = unset
+2
nixos/modules/services/networking/ircd-hybrid/.editorconfig
··· 1 + [*.{conf,in}] 2 + trim_trailing_whitespace = unset
+5
pkgs/build-support/dotnet/dotnetenv/Wrapper/.editorconfig
··· 1 + [*] 2 + end_of_line = unset 3 + indent_style = unset 4 + insert_final_newline = unset 5 + trim_trailing_whitespace = unset
+5
pkgs/by-name/ov/ovftool/.editorconfig
··· 1 + [*.ova] 2 + end_of_line = unset 3 + insert_final_newline = unset 4 + trim_trailing_whitespace = unset 5 + charset = unset
+2
pkgs/by-name/ti/timidity/.editorconfig
··· 1 + [timidity.cfg] 2 + trim_trailing_whitespace = unset
+3
pkgs/development/haskell-modules/.editorconfig
··· 1 + [hackage-packages.nix] 2 + indent_style = unset 3 + trim_trailing_whitespace = unset
+3
pkgs/kde/generated/.editorconfig
··· 1 + [*] 2 + insert_final_newline = unset 3 + end_of_line = unset
+2
pkgs/misc/documentation-highlighter/.editorconfig
··· 1 + [*] 2 + insert_final_newline = unset
+2
pkgs/servers/dict/.editorconfig
··· 1 + [wordnet_structures.py] 2 + trim_trailing_whitespace = unset
+4
pkgs/tools/security/qdigidoc/vendor/.editorconfig
··· 1 + [*] 2 + end_of_line = unset 3 + insert_final_newline = unset 4 + trim_trailing_whitespace = unset