File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ # THis is an EditorConfig file
2+ # https://EditorConfig.org
3+
4+ root = true
5+
6+ [* ]
7+ end_of_line = lf
8+ insert_final_newline = true
9+ charset = utf-8
10+ indent_style = tab
11+ indent_size = 4
12+ insert_final_newline = true
13+
14+ [* .yml ]
15+ indent_style = space
16+ indent_size = 2
17+ end_of_line = lf
18+ insert_final_newline = true
19+
20+ [* .py ]
21+ indent_style = space
22+ indent_size = 4
23+ end_of_line = lf
24+ insert_final_newline = true
25+
26+ # Tab indentation (no size specified)
27+ [Makefile ]
28+ indent_style = tab
Original file line number Diff line number Diff line change 1+ repos :
2+ - repo : https://github.com/pre-commit/pre-commit-hooks
3+ rev : v2.3.0
4+ hooks :
5+ - id : check-yaml
6+ - id : end-of-file-fixer
7+ - id : trailing-whitespace
8+ - repo : https://github.com/psf/black
9+ rev : 19.3b0
10+ hooks :
11+ - id : black
You can’t perform that action at this time.
0 commit comments