From 3225212275864b5bd79bf8ca516bec284a4ef8b8 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Fri, 7 Aug 2020 09:22:22 -0500 Subject: [PATCH] Add .factorypath and others to .gitignore .factorypath file gets added as a changed file in source control depending on the IDE you are using (I use VS Code). Added a few other exclusions that my previous team used to add to our Java projects. --- .gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index 51c5a9ac4..bd9d69597 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,9 @@ open-refine.log .vscode .metadata # Eclipse plugins specific +# Locally stored "Eclipse launch configurations" +*.launch + .idea *.iml @@ -55,3 +58,12 @@ apache-maven-*-bin.tar.gz # Ignore refine-dev.ini refine-dev.ini + +# Java annotation processor (APT) +.factorypath + +# Code Recommenders +.recommenders/ + +# STS (Spring Tool Suite) +.springBeans