forked from understrap/understrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request understrap#1185 from IanDelMar/ignore
Update .gitignore
- Loading branch information
Showing
1 changed file
with
48 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,52 @@ | ||
.sass-cache | ||
# ------------------------------------------------------------------------ | ||
# This file specifies intentionally untracked files that Git should ignore | ||
# - https://git-scm.com/docs/gitignore | ||
# ------------------------------------------------------------------------ | ||
|
||
# Numerous always-ignore extensions | ||
*.bak | ||
*.cvs | ||
*.db | ||
*.diff | ||
*.err | ||
*.log | ||
*.orig | ||
*.rej | ||
*.zip | ||
|
||
# Ignore all files and directories starting with . or ~ or ._ or ending with ~ | ||
.* | ||
~* | ||
*~ | ||
._* | ||
# but track | ||
!.browserslist | ||
!.editorconfig | ||
!.gitignore | ||
!.jscsrc | ||
!.jshintignore | ||
!.travis.yml | ||
|
||
# Ignore all files with .lock extentions | ||
*.lock | ||
# but track | ||
!composer.lock | ||
|
||
# OS or Editor files and folders | ||
*.code-workspace | ||
*.elc | ||
*.esproj | ||
*.komodoproject | ||
*.sublime* | ||
*.tmproj* | ||
|
||
# Dependencies | ||
bower_components | ||
|
||
node_modules | ||
vendor | ||
|
||
understrap.zip | ||
|
||
dist | ||
|
||
dist-product | ||
|
||
npm-debug.log | ||
|
||
/vendor/ | ||
|
||
.DS_Store | ||
|
||
Thumbs.db | ||
|
||
.svn | ||
|
||
.cvs | ||
|
||
*.bak | ||
|
||
*.swp | ||
.idea/ | ||
|
||
phpcs.xml.dist | ||
.phpcs.xml | ||
.phpcs-cache | ||
# Other UnderStrap specific files and directories | ||
phpcs.xml | ||
dist/ | ||
dist-product/ | ||
**/img |