diff options
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | README.md | 13 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1a6c279 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +assets/* linguist-generated @@ -545,8 +545,17 @@ do not put `.chr` files in the same directory as code or at the root of your project. Moreover, some tools like [NEXXT](https://frankengraphics.itch.io/nexxt) will -save a `session.nss` file to your `assets` directory. Do not remove it nor ignore -it via git, as it will help you everytime you go back to your `chr` files. +save a `session.nss` file to your `assets` directory. Do not remove it nor +ignore it via git, as it will help you everytime you go back to your `chr` +files. + +As a cherry on top, if you want tools to be more accurate on the statistics of +your projects, you might want to to take a look at the given +[.gitattributes](./.gitattributes) file. This file is telling git (and related +porcelain/tools) to consider anything under the `assets/` directory to be +generated. This allows tools like +[linguist](https://github.com/github-linguist/linguist) to perform more accurate +reports. # License |
