Blame view

.editorconfig 441 Bytes
0f8e8089   Graham Fairweather   Fix: Project is u...
1
2
3
4
  # This file is for unifying the coding style for different editors and IDEs
  # editorconfig.org
  
  # top-most EditorConfig file
7fa943eb   梁灏   init
5
6
  root = true
  
0f8e8089   Graham Fairweather   Fix: Project is u...
7
8
  # every file
  [*]
7fa943eb   梁灏   init
9
  charset = utf-8
7fa943eb   梁灏   init
10
  end_of_line = lf
0f8e8089   Graham Fairweather   Fix: Project is u...
11
12
  indent_size = 4
  indent_style = space
7fa943eb   梁灏   init
13
14
  insert_final_newline = true
  trim_trailing_whitespace = true
0f8e8089   Graham Fairweather   Fix: Project is u...
15
16
17
18
19
20
21
22
23
24
25
  
  # 4 space indentation
  [*.py]
  indent_size = 4
  
  # Tab indentation (no size specified)
  [Makefile]
  indent_style = tab
  
  [*.md]
  trim_trailing_whitespace = false