forked from GSA/project-open-data-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
32 lines (27 loc) · 909 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org
; Don't look higher than this file for this project
root = true
; Use UTF8, Unix-style line endings, indent with 4 spaces, end files with a newline, trim trailing whitespace
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
; C-style doc comments
block_comment_start = /*
block_comment = *
block_comment_end = */
; Trailing whitespace can be important in Markdown for continuing lines
; Limit lines to 80 characters wide to make files easily readable in a terminal
[*.md]
trim_trailing_whitespace = false
max_line_length = 80
; Use smaller indent size for YAML files, since nesting tends to be deep
[*.{yml,yaml}]
indent_size = 2
; Tabs are significant for Makefiles
[Makefile]
indent_style = tab