summary refs log blame commit diff
path: root/.editorconfig
blob: dab4bb0e80a069efb5c2c66d0c982b1746ac662e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                     

                      


                                
 

                                                        

                                                                      
                    






                                               

               

                                                           
               
# EditorConfig configuration for nixpkgs
# http://EditorConfig.org

# 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

# Ignore diffs/patches
[*.{diff,patch}]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset

# see https://nixos.org/nixpkgs/manual/#chap-conventions

# Match nix/perl/python/ruby/shell/docbook files, set indent to spaces
[*.{nix,pl,py,rb,sh,xml}]
indent_style = space

# Match docbook files, set indent width of one
[*.xml]
indent_size = 1

# Match nix/ruby files, set indent width of two
[*.{nix,rb}]
indent_size = 2

# Match perl/python/shell scripts, set indent width of four
[*.{pl,py,sh}]
indent_size = 4