diff options
author | Azat Bahawi <azat@bahawi.net> | 1970-01-01 03:00:00 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-09-20 11:51:54 +0300 |
commit | 38bab29776950ac2364ed64195b89887717c33de (patch) | |
tree | edaaf366a55dbe96d268019124536bc504c64e87 /editorconfig/.editorconfig |
Diffstat (limited to 'editorconfig/.editorconfig')
-rw-r--r-- | editorconfig/.editorconfig | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/editorconfig/.editorconfig b/editorconfig/.editorconfig new file mode 100644 index 0000000..0bb0c6e --- /dev/null +++ b/editorconfig/.editorconfig @@ -0,0 +1,89 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +# Assembly +[*.{asm,s,S}] +indent_style = tab + +# C/C++ +[*.{c,h,cc,hh,cpp,hpp,cxx,hxx}] +indent_style = tab +max_line_length = 80 +trim_trailing_whitespace = false +insert_final_newline = false + +# C# +[*.cs] +indent_style = tab + +# Go +[*.go] +indent_style = tab + +# Python +[*.py] +max_line_length = 80 + +# Haskell +[*.{hs,lhs}] +indent_size = 2 + +# Emacs Lisp +[*.el] +indent_size = 2 + +# Common Lisp +[*.{lisp,cl}] +indent_size = 2 + +# Scheme +[*.scm] +indent_size = 2 + +# Make +[{Makefile,*.mk}] +indent_style = tab + +# CMake +[{CMakeLists.txt,*.cmake}] +indent_style = tab + +# Autotools +[*.{ac,am}] +indent_style = tab + +# Shell +[*.{sh,bash}] +indent_style = tab +insert_final_newline = false +trim_trailing_whitespace = false + +# Gentoo +[*.ebuild] +indent_style = tab + +# RPM Spec +[*.spec] +insert_final_newline = false +trim_trailing_whitespace = false + +# Nix +[*.nix] +indent_size = 2 + +# XML +[*.xml] +indent_style = tab +insert_final_newline = false +trim_trailing_whitespace = false + +# Git +[*.git*] +indent_style = tab |