-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .gitattributes file so the packaged zip becomes cleaner
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Stuff not being exported to ZIP and therefore | ||
# prevented from being packed into LSP.sublime-package | ||
|
||
## git | ||
.github/ export-ignore | ||
gh-pages/ export-ignore | ||
*.git export-ignore | ||
*.gitignore export-ignore | ||
*.gitattributes export-ignore | ||
|
||
## unit testing | ||
tests/ export-ignore | ||
unittesting.json export-ignore | ||
|
||
## other configs | ||
stubs/ export-ignore | ||
.travis.yml export-ignore | ||
.appveyor.yml export-ignore | ||
.coveragerc export-ignore | ||
*.ini export-ignore | ||
*.cfg export-ignore |