• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1root = true
2
3[*]
4indent_style = tab
5indent_size = 4
6tab_width = 4
7end_of_line = lf
8charset = utf-8
9trim_trailing_whitespace = true
10insert_final_newline = true
11
12[{*.json,*.json.example,*.gyp,*.yml,*.yaml,*.workflow}]
13indent_style = space
14indent_size = 2
15
16[{*.py,*.asm}]
17indent_style = space
18
19[*.py]
20indent_size = 4
21
22[*.asm]
23indent_size = 8
24
25[*.md]
26trim_trailing_whitespace = false
27
28# Ideal settings - some plugins might support these.
29[*.js]
30quote_type = single
31
32[{*.c,*.cc,*.h,*.hh,*.cpp,*.hpp,*.m,*.mm,*.mpp,*.js,*.java,*.go,*.rs,*.php,*.ng,*.jsx,*.ts,*.d,*.cs,*.swift}]
33curly_bracket_next_line = false
34spaces_around_operators = true
35spaces_around_brackets = outside
36# close enough to 1TB
37indent_brace_style = K&R
38