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
|
|
|
|
2024-02-14 17:09:44 +01:00
|
|
|
# We want readFile .version to return the version without a newline.
|
|
|
|
[.version]
|
|
|
|
insert_final_newline = false
|
|
|
|
|
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
|
2024-11-10 14:13:31 +13:00
|
|
|
[*.{bash,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
|
|
|
|
|
2025-03-07 16:20:11 -08:00
|
|
|
# Match all the Bash code in Nix files, set indent width of two
|
|
|
|
[*.{bash,sh}]
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
# Match Perl and Python scripts, set indent width of four
|
|
|
|
[*.{pl,pm,py}]
|
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
|
|
|
|
|
2025-05-07 18:54:27 +02:00
|
|
|
# Match package.json and package-lock.json, which are generally pulled from upstream and accept them as they are
|
|
|
|
[package{,-lock}.json]
|
2024-07-29 19:24:33 +02:00
|
|
|
indent_style = unset
|
2025-05-07 18:54:27 +02:00
|
|
|
insert_final_newline = unset
|
2024-07-29 19:24:33 +02:00
|
|
|
|
2020-05-30 08:59:33 +10:00
|
|
|
# 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
|
|
|
|
|
2025-02-16 00:43:26 +07:00
|
|
|
[registry.dat]
|
2020-08-09 12:46:29 +10:00
|
|
|
end_of_line = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
|
2025-05-07 18:44:47 +02:00
|
|
|
# Keep this hint at the bottom:
|
|
|
|
# Please don't add entries for subfolders here.
|
|
|
|
# Create <subfolder>/.editorconfig instead.
|