From 5fe25b3b36cf25acccb3154453b87f9e9e4f2bf5 Mon Sep 17 00:00:00 2001 From: Raoul Wols Date: Sat, 26 Aug 2017 19:43:03 +0200 Subject: [PATCH] Add .gitattributes file so the packaged zip becomes cleaner See: https://github.com/jisaacks/GitGutter/commit/a8beea5f1db7216679e9dad7a2edc02f936cd10a --- .gitattributes | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9041b72 --- /dev/null +++ b/.gitattributes @@ -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