Skip to content

Commit

Permalink
[Unity] ignore Jetbrains plugin folder (github#3026)
Browse files Browse the repository at this point in the history
When a Unity project is opened in Jetbrains Rider, it installs a editor plugin into the Assets/Plugins/Editor/Jetbrains folder to manage Unity->Rider integration. This plugins life cycle is managed by your local Rider install and is automatically updated by Rider. It should not be committed to source control.  This is documented by Jetbrains here https://www.jetbrains.com/help/rider/Unity.html

This change should ignore both the Jetbrains plugin folder and its .meta file correctly. For completeness, it would be nice to also ignore the /.idea*/ settings folder that Rider autogenerates, but i see a PR implementing that change has already been rejected.
  • Loading branch information
LotteMakesStuff authored and shiftkey committed May 12, 2019
1 parent 5808b77 commit 65bc8a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Unity.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
# TextMesh Pro files
[Aa]ssets/TextMesh*Pro/

# Autogenerated Jetbrains Rider plugin
[Aa]ssets/Plugins/Editor/JetBrains*

# Visual Studio cache directory
.vs/

Expand Down

0 comments on commit 65bc8a7

Please sign in to comment.