Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ web/private/scripts/quicksilver

# custom theme and plugin should also be included here
!web/wp-content/themes/dctx/
!web/wp-content/themes/dctx-v2/

# Add directories containing build assets below.
# Keep all additions above the "cut" line.
Expand Down Expand Up @@ -116,4 +117,4 @@ Thumbs.db
.sass-cache

# LOCALDEV #
.vscode
.vscode
3 changes: 3 additions & 0 deletions web/wp-content/themes/dctx-v2/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "assets/bower_components/"
}
22 changes: 22 additions & 0 deletions web/wp-content/themes/dctx-v2/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{html,js,php,css,scss}]
charset = utf-8

# 4 space indentation
[*.{html,js,php,css,scss}]
indent_style = tab

# Matches the exact files
[{package.json,bower.json,.bowerrc,.eslintrc.js,.travis.yml,.sass-lint.yml,phpcs.xml}]
indent_style = space
Loading