forked from Unity-Technologies/Robotics-Nav2-SLAM-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f7c86c
commit 52d34ce
Showing
2 changed files
with
117 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,45 @@ | ||
* text=auto eol=lf | ||
# EOL | ||
*.py eol=lf | ||
*.pl eol=lf | ||
*.pm eol=lf | ||
*.t eol=lf | ||
*.it eol=lf | ||
*.h eol=lf | ||
*.cpp eol=lf | ||
*.cs eol=lf | ||
*.c eol=lf | ||
*.txt eol=lf | ||
*.bindings eol=lf | ||
*.sh eol=lf | ||
*.jam eol=lf | ||
*.as eol=lf | ||
*.boo eol=lf | ||
*.java eol=lf | ||
*.js eol=lf | ||
Makefile eol=lf | ||
*.shader eol=lf | ||
*.cginc eol=lf | ||
*.glslinc eol=lf | ||
*.meta eol=lf | ||
*.mm eol=lf | ||
*.md eol=lf | ||
Runtime/Export/common_* eol=lf | ||
Repositories.ini eol=lf | ||
.hgignore eol=lf | ||
# vs can handle these as lf, but really wants them as crlf | ||
*.vcproj eol=crlf | ||
*.vcxproj eol=crlf | ||
*.vcxproj.filters eol=crlf | ||
*.csproj eol=crlf | ||
*.props eol=crlf | ||
*.targets eol=crlf | ||
*.sln eol=crlf | ||
*.sln.template eol=crlf | ||
*.bat eol=crlf | ||
*.cmd eol=crlf | ||
*.xaml eol=crlf | ||
# the templating parser will actually fail on lf, inexplicably setting every #line directive as '1' | ||
*.tt eol=crlf | ||
*.t4 eol=crlf | ||
*.ttinclude eol=crlf |
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,72 @@ | ||
# Custom settings asset | ||
*.settings.asset* | ||
|
||
# Visual Studio 2015 cache directory | ||
/Project/.vs/ | ||
|
||
# Autogenerated VS/MD/Consulo solution and project files | ||
*.csproj | ||
*.unityproj | ||
*.sln | ||
*.suo | ||
*.tmp | ||
*.user | ||
*.userprefs | ||
*.pidb | ||
*.booproj | ||
*.svd | ||
*.pdb | ||
|
||
# Unity3D generated meta files | ||
*.pidb.meta | ||
|
||
# Builds | ||
*.apk | ||
*.unitypackage | ||
*.app | ||
*.exe | ||
*.x86_64 | ||
*.x86 | ||
|
||
# Generated doc folders | ||
/docs/html | ||
|
||
# Mac hidden files | ||
*.DS_Store | ||
*/.ipynb_checkpoints | ||
*/.idea | ||
*.pyc | ||
*.idea/misc.xml | ||
*.idea/modules.xml | ||
*.idea/ | ||
*.iml | ||
*.cache | ||
*/build/ | ||
*/dist/ | ||
*.egg-info* | ||
*.eggs* | ||
*.gitignore.swp | ||
|
||
# VSCode hidden files | ||
*.vscode/ | ||
|
||
.DS_Store | ||
.ipynb_checkpoints | ||
|
||
# pytest cache | ||
*.pytest_cache/ | ||
|
||
# Ignore PyPi build files. | ||
dist/ | ||
build/ | ||
|
||
# Python virtual environment | ||
venv/ | ||
.mypy_cache/ | ||
|
||
# Code coverage report | ||
.coverage | ||
coverage.xml | ||
/htmlcov/ | ||
|
||
**/UserSettings/* |