diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-11-20 19:11:41 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-11-20 19:11:41 -0500 |
commit | b72ea99488f6b1233b6140e07c6703e3ce6926ef (patch) | |
tree | c8d4b2ad412ff9240656b7f35f5458ba68f7244a | |
parent | c2854ef7c9d0354a111001f6cb979a4360814020 (diff) |
vendor the scripts instead of using Text. add sound data
-rw-r--r-- | .gitattributes | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.gitattributes b/.gitattributes index 20ea1f57c..969d0c7ff 100644 --- a/.gitattributes +++ b/.gitattributes @@ -17,11 +17,13 @@ Makefile text eol=lf *.h linguist-language=C *.inc linguist-language=Assembly docs/* linguist-vendored -# most of the assembly count comes from huge amounts of script include files: it is not fair to count these as assembly. as such, we will instead interpret these as Text since they are direct bytecode scripts. -data/maps/* linguist-language=Text -data/scripts/* linguist-language=Text -data/battle_ai_scripts.s linguist-language=Text -data/battle_anim_scripts.s linguist-language=Text -data/battle_scripts_1.s linguist-language=Text -data/battle_scripts_2.s linguist-language=Text -data/contest_ai_scripts.s linguist-language=Text +# most of the assembly count comes from huge amounts of script include files: it is not fair to count these as assembly. as such, we will instead vendor these. Note that they do take up the majority of the repository. +data/maps/* linguist-vendored +data/scripts/* linguist-vendored +data/battle_ai_scripts.s linguist-vendored +data/battle_anim_scripts.s linguist-vendored +data/battle_scripts_1.s linguist-vendored +data/battle_scripts_2.s linguist-vendored +data/contest_ai_scripts.s linguist-vendored +# sound data +sound/songs/*.s linguist-generated |