UNPKG

1.61 kBPlain TextView Raw
1# ------------------------------------------------------------------------- #
2# Luke's Universal Editor Config #
3# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
4# Version : 1.3.2 #
5# Author : Luke Chavers #
6# Created : Monday, Jan 26th, 2015 #
7# Updated : Thursday, Aug 31st, 2017 #
8# Based On : https://editorconfig.org #
9# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
10# EditorConfig helps developers define and maintain consistent coding #
11# styles between different editors and IDEs. #
12# ------------------------------------------------------------------------- #
13
14
15
16# -- General Settings ----------------------------------------------------- #
17
18root = true
19
20# -- All Files (Defaults) ------------------------------------------------- #
21
22[*]
23
24indent_style = tab
25indent_size = 4
26end_of_line = lf
27charset = utf-8
28trim_trailing_whitespace = true
29insert_final_newline = true
30
31# -- YAML files ----------------------------------------------------------- #
32
33[*.yml]
34indent_style = space
35indent_size = 2
36
37# -- Markdown Files ------------------------------------------------------- #
38
39[*.md]
40trim_trailing_whitespace = false
41
42# -- Jade files ---------------------------------------------------------- #
43
44[*.jade]
45indent_style = space
46indent_size = 2