2016-10-02 22:06:40 +02:00
|
|
|
# EditorConfig configuration for nixpkgs
|
2020-05-30 08:59:33 +10:00
|
|
|
# https://EditorConfig.org
|
2016-10-02 22:06:40 +02:00
|
|
|
|
|
|
|
# Top-most EditorConfig file
|
|
|
|
root = true
|
|
|
|
|
|
|
|
# Unix-style newlines with a newline ending every file, utf-8 charset
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
charset = utf-8
|
|
|
|
|
2020-05-18 19:11:42 +10:00
|
|
|
# Ignore diffs/patches
|
|
|
|
[*.{diff,patch}]
|
2020-05-20 12:32:58 +10:00
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
2020-05-18 19:11:42 +10:00
|
|
|
|
2016-10-02 22:06:40 +02:00
|
|
|
# see https://nixos.org/nixpkgs/manual/#chap-conventions
|
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
# Match json/lockfiles/markdown/nix/perl/python/ruby/shell/docbook files, set indent to spaces
|
|
|
|
[*.{json,lock,md,nix,pl,pm,py,rb,sh,xml}]
|
2016-10-02 22:06:40 +02:00
|
|
|
indent_style = space
|
2020-05-16 12:23:00 +10:00
|
|
|
|
|
|
|
# Match docbook files, set indent width of one
|
|
|
|
[*.xml]
|
|
|
|
indent_size = 1
|
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
# Match json/lockfiles/markdown/nix/ruby files, set indent width of two
|
|
|
|
[*.{json,lock,md,nix,rb}]
|
2016-10-02 22:06:40 +02:00
|
|
|
indent_size = 2
|
|
|
|
|
2020-05-16 12:23:00 +10:00
|
|
|
# Match perl/python/shell scripts, set indent width of four
|
2020-05-30 08:59:33 +10:00
|
|
|
[*.{pl,pm,py,sh}]
|
2016-10-02 22:06:40 +02:00
|
|
|
indent_size = 4
|
2020-05-30 08:59:33 +10:00
|
|
|
|
|
|
|
# Match gemfiles, set indent to spaces with width of two
|
|
|
|
[Gemfile]
|
|
|
|
indent_size = 2
|
|
|
|
indent_style = space
|
|
|
|
|
|
|
|
# Disable file types or individual files
|
|
|
|
# some of these files may be auto-generated and/or require significant changes
|
|
|
|
|
2020-07-31 17:31:15 +10:00
|
|
|
[*.{c,h}]
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2021-01-20 07:35:35 +10:00
|
|
|
[*.{asc,key,ovpn}]
|
2020-07-31 17:31:15 +10:00
|
|
|
insert_final_newline = unset
|
|
|
|
end_of_line = unset
|
2021-01-20 07:35:35 +10:00
|
|
|
trim_trailing_whitespace = unset
|
2020-07-31 17:31:15 +10:00
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
[*.lock]
|
|
|
|
indent_size = unset
|
|
|
|
|
2022-12-29 01:30:25 +01:00
|
|
|
# Although Markdown/CommonMark allows using two trailing spaces to denote
|
|
|
|
# a hard line break, we do not use that feature in nixpkgs since
|
|
|
|
# it forces the surrounding paragraph to become a <literallayout> which
|
|
|
|
# does not wrap reasonably.
|
|
|
|
# Instead of a hard line break, start a new paragraph by inserting a blank line.
|
2022-04-21 01:36:36 +02:00
|
|
|
[*.md]
|
2022-12-29 01:30:25 +01:00
|
|
|
trim_trailing_whitespace = true
|
2022-04-21 01:36:36 +02:00
|
|
|
|
2022-08-17 01:58:57 +09:00
|
|
|
# binaries
|
|
|
|
[*.nib]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
charset = unset
|
|
|
|
|
2020-08-31 11:16:45 +10:00
|
|
|
[eggs.nix]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-03 21:52:52 +10:00
|
|
|
[nixos/modules/services/networking/ircd-hybrid/*.{conf,in}]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-09 12:46:29 +10:00
|
|
|
[pkgs/build-support/dotnetenv/Wrapper/**]
|
2020-08-03 21:52:52 +10:00
|
|
|
end_of_line = unset
|
2020-10-24 12:24:25 +10:00
|
|
|
indent_style = unset
|
2020-08-03 21:52:52 +10:00
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-09 12:46:29 +10:00
|
|
|
[pkgs/development/compilers/elm/registry.dat]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
[pkgs/development/haskell-modules/hackage-packages.nix]
|
|
|
|
indent_style = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2023-12-01 18:33:47 +01:00
|
|
|
[pkgs/misc/documentation-highlighter/**]
|
|
|
|
insert_final_newline = unset
|
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
[pkgs/servers/dict/wordnet_structures.py]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-09-21 08:08:56 +10:00
|
|
|
[pkgs/tools/misc/timidity/timidity.cfg]
|
|
|
|
trim_trailing_whitespace = unset
|
2023-02-15 23:52:04 -08:00
|
|
|
|
|
|
|
[pkgs/tools/virtualization/ovftool/*.ova]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
charset = unset
|
2023-03-27 17:06:12 +02:00
|
|
|
|
|
|
|
[lib/tests/*.plist]
|
|
|
|
indent_style = tab
|
|
|
|
insert_final_newline = unset
|