Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 6852993

Browse files
shanavas786lirantal
authored andcommitted
fix(editorconfig): Fix file path patterns (#1362)
Change file pattern like [**.a, **.b] to [**.{a,b}] as specified in editorconfig.org
1 parent c364922 commit 6852993

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.editorconfig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ root = true
1111
end_of_line = lf
1212
insert_final_newline = true
1313

14-
# Standard at: https://github.com/felixge/node-style-guide
15-
[**.js, **.json]
14+
# Standard at: https://github.com/felixge/node-style-guide
15+
[**.{js,json}]
1616
trim_trailing_whitespace = true
1717
indent_style = space
1818
indent_size = 2
@@ -24,7 +24,7 @@ space_after_anonymous_functions = true
2424
spaces_in_brackets = false
2525

2626
# No Standard. Please document a standard if different from .js
27-
[**.yml, **.css]
27+
[**.{yml,css}]
2828
trim_trailing_whitespace = true
2929
indent_style = tab
3030

@@ -37,12 +37,12 @@ indent_size = 2
3737
[**.md]
3838
indent_style = tab
3939

40-
# Standard at:
40+
# Standard at:
4141
[Makefile]
4242
indent_style = tab
4343

4444
# The indentation in package.json will always need to be 2 spaces
4545
# https://github.com/npm/npm/issues/4718
46-
[package.json, bower.json]
46+
[{package, bower}.json]
4747
indent_style = space
48-
indent_size = 2
48+
indent_size = 2

0 commit comments

Comments
 (0)