forked from Esteban-Rocha/page-ruler-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
executable file
·38 lines (34 loc) · 1.22 KB
/
.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
33
34
35
36
37
38
#=================================================
# Multi purpose .editorconfig template
#
# @author Esteban Rocha
# @link https://github.com/Esteban-Rocha
# @since 1.0.0
#=================================================
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
# top-most EditorConfig file
root = true
# For anything and everything use:
## Unix-style newlines with a newline ending
## Trim trailing whitespace to remove any whitespace characters preceding newline characters
## Charset set to UTF-8
## Indentation style set to tabs for cleanliness and small compression gains
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
# For specific file extension use:
## Matches the exact files extension
## For multiple files with brace expansion notation [*.{js,py}]
[*.yml]
indent_size = 2
indent_style = space
# For specific config files use:
## Matches the exact files either package.json || .travis.yml || webpack.config.js
# [{gulpfile.js,package.json,.travis.yml,webpack.config.js}]
# indent_size = 2
# indent_style = space