• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# https://editorconfig.org
2
3root = true
4
5[*]
6charset = utf-8
7insert_final_newline = true
8trim_trailing_whitespace = true
9
10[*.txt]
11indent_style = space
12
13[*.[chS]]
14indent_style = space
15max_doc_length = 80
16max_line_length = 80
17
18[*.dfa]
19indent_style = space
20max_doc_length = 80
21max_line_length = 80
22
23[*.{awk,cmake}]
24indent_style = space
25max_doc_length = 80
26max_line_length = 100
27
28[*.{in,sh}]
29indent_style = space
30max_doc_length = 100
31max_line_length = 100
32
33[{Makefile.in,ltmain.sh}]
34indent_style = unset
35insert_final_newline = unset
36max_doc_length = unset
37max_line_length = unset
38trim_trailing_whitespace = unset
39
40[COMMIT_EDITMSG]
41indent_style = space
42max_doc_length = unset
43max_line_length = 72
44