Skip to content

Commit 65bc8a7

Browse files
LotteMakesStuffshiftkey
authored andcommitted
[Unity] ignore Jetbrains plugin folder (#3026)
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.
1 parent 5808b77 commit 65bc8a7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Unity.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
# TextMesh Pro files
1818
[Aa]ssets/TextMesh*Pro/
1919

20+
# Autogenerated Jetbrains Rider plugin
21+
[Aa]ssets/Plugins/Editor/JetBrains*
22+
2023
# Visual Studio cache directory
2124
.vs/
2225

0 commit comments

Comments
 (0)