The standard list may not be there, but you have some examples :
syntax: regexp \.*py[co] \.DS_Store ~$ \.coverage \.egg-info syntax: glob nbproject app.yaml auth.py dist target WEB-INF/appengine-generated
In principle, you should ignore at least any directory with generated content.
The same principles apply to Java application projects such as this or this :
syntax: glob *~ *.patch *.sedbak */target/* */<project_name>searchindex/* */test-output/* hs_err_pid*.log tomcat syntax: regexp \.jar$ ^\.pc/ ^.ant-targets-build.xml \.pages.xml.spdia$ temp-testng-customsuite.xml$ # eclipse and maven stuff ^target # kde related \.directory$ #gwt related ^<project_name>-war/war/WEB-INF/classes/ ^<project_name>-war/tomcat \.gwt-tmp$ ^<project_name>-war/org.fedorahosted.<project_name>.webtrans.Application ^<project_name>-war/war/org.fedorahosted.<project_name>.webtrans.Application
Off course, I saved any Eclipse or maven-related file under source control to facilitate the build step when someone clones the repo.
Vonc
source share