2016-10-02 21:06:40 +01:00
|
|
|
# EditorConfig configuration for nixpkgs
|
2020-05-29 23:59:33 +01:00
|
|
|
# https://EditorConfig.org
|
2016-10-02 21:06:40 +01: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 10:11:42 +01:00
|
|
|
# Ignore diffs/patches
|
|
|
|
[*.{diff,patch}]
|
2020-05-20 03:32:58 +01:00
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
2020-05-18 10:11:42 +01:00
|
|
|
|
2016-10-02 21:06:40 +01:00
|
|
|
# see https://nixos.org/nixpkgs/manual/#chap-conventions
|
|
|
|
|
2020-05-29 23:59:33 +01: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 21:06:40 +01:00
|
|
|
indent_style = space
|
2020-05-16 03:23:00 +01:00
|
|
|
|
|
|
|
# Match docbook files, set indent width of one
|
|
|
|
[*.xml]
|
|
|
|
indent_size = 1
|
|
|
|
|
2020-05-29 23:59:33 +01:00
|
|
|
# Match json/lockfiles/markdown/nix/ruby files, set indent width of two
|
|
|
|
[*.{json,lock,md,nix,rb}]
|
2016-10-02 21:06:40 +01:00
|
|
|
indent_size = 2
|
|
|
|
|
2020-05-16 03:23:00 +01:00
|
|
|
# Match perl/python/shell scripts, set indent width of four
|
2020-05-29 23:59:33 +01:00
|
|
|
[*.{pl,pm,py,sh}]
|
2016-10-02 21:06:40 +01:00
|
|
|
indent_size = 4
|
2020-05-29 23:59:33 +01: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 08:31:15 +01:00
|
|
|
[*.{c,h}]
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2021-01-19 21:35:35 +00:00
|
|
|
[*.{asc,key,ovpn}]
|
2020-07-31 08:31:15 +01:00
|
|
|
insert_final_newline = unset
|
|
|
|
end_of_line = unset
|
2021-01-19 21:35:35 +00:00
|
|
|
trim_trailing_whitespace = unset
|
2020-07-31 08:31:15 +01:00
|
|
|
|
2020-05-29 23:59:33 +01:00
|
|
|
[*.lock]
|
|
|
|
indent_size = unset
|
|
|
|
|
2022-12-29 00:30:25 +00: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 00:36:36 +01:00
|
|
|
[*.md]
|
2022-12-29 00:30:25 +00:00
|
|
|
trim_trailing_whitespace = true
|
2022-04-21 00:36:36 +01:00
|
|
|
|
2022-08-16 17:58:57 +01:00
|
|
|
# binaries
|
|
|
|
[*.nib]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
charset = unset
|
|
|
|
|
2020-08-31 02:16:45 +01:00
|
|
|
[eggs.nix]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-03 12:52:52 +01:00
|
|
|
[nixos/modules/services/networking/ircd-hybrid/*.{conf,in}]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-09 03:46:29 +01:00
|
|
|
[pkgs/build-support/dotnetenv/Wrapper/**]
|
2020-08-03 12:52:52 +01:00
|
|
|
end_of_line = unset
|
2020-10-24 03:24:25 +01:00
|
|
|
indent_style = unset
|
2020-08-03 12:52:52 +01:00
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-08-09 03:46:29 +01:00
|
|
|
[pkgs/development/compilers/elm/registry.dat]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
|
2020-05-29 23:59:33 +01:00
|
|
|
[pkgs/development/haskell-modules/hackage-packages.nix]
|
|
|
|
indent_style = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
|
|
|
[pkgs/servers/dict/wordnet_structures.py]
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
|
2020-09-20 23:08:56 +01:00
|
|
|
[pkgs/tools/misc/timidity/timidity.cfg]
|
|
|
|
trim_trailing_whitespace = unset
|
2023-02-16 07:52:04 +00:00
|
|
|
|
|
|
|
[pkgs/tools/virtualization/ovftool/*.ova]
|
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
charset = unset
|