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

Commit

Permalink
fix(editorconfig): Fix file path patterns (#1362)
Browse files Browse the repository at this point in the history
Change file pattern like [**.a, **.b] to [**.{a,b}]
as specified in editorconfig.org
  • Loading branch information
shanavas786 authored and lirantal committed Jun 13, 2016
1 parent c364922 commit 6852993
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ root = true
end_of_line = lf
insert_final_newline = true

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

# No Standard. Please document a standard if different from .js
[**.yml, **.css]
[**.{yml,css}]
trim_trailing_whitespace = true
indent_style = tab

Expand All @@ -37,12 +37,12 @@ indent_size = 2
[**.md]
indent_style = tab

# Standard at:
# Standard at:
[Makefile]
indent_style = tab

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

0 comments on commit 6852993

Please sign in to comment.