-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added vendor/ to .gitignore * Improved .gitignore
- Loading branch information
Daniel
authored
Mar 5, 2021
1 parent
6f491be
commit ae078d1
Showing
1 changed file
with
11 additions
and
8 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,35 @@ | ||
# Idea files | ||
# Idea | ||
.idea/* | ||
|
||
# Mac files | ||
# Mac OS | ||
.DS_Store | ||
|
||
# Byte-compiled / optimized / DLL files | ||
*.manifest | ||
*.spec | ||
|
||
# Jekyll dev or build files | ||
# Jekyll dev or build | ||
_site/* | ||
_development_tool/* | ||
.sass-cache/* | ||
*.css.map | ||
*.scssc | ||
.bundle/* | ||
/vendor/ | ||
.jekyll-cache/* | ||
*/.jekyll-cache/* | ||
|
||
# Theme Gem files | ||
# Theme Gem | ||
Gemfile.lock | ||
*.gem | ||
.gems | ||
jekyll-theme-type-on-strap.gemspec | ||
|
||
# Node js files | ||
# Node.js | ||
**/node_modules/* | ||
**/package-lock.json | ||
|
||
# Misc | ||
*-test.md | ||
*copy.md | ||
.jekyll-cache/* | ||
test/* | ||
assets/package-lock.json | ||
*/.jekyll-cache/* |