Add .vscode/settings.json #25

Open
opened 2019-08-08 14:33:33 +00:00 by NatoBoram · 0 comments
NatoBoram commented 2019-08-08 14:33:33 +00:00 (Migrated from github.com)

The Language Support for Java(TM) by Red Hat extension prompts to automatically adds a few settings to the workspace, but I thought it would be a great idea to add them to the template.

.vscode/settings.json

{
	"files.exclude": {
		"**/.classpath": true,
		"**/.project": true,
		"**/.settings": true,
		"**/.factorypath": true
	},
	"java.configuration.updateBuildConfiguration": "automatic"
}
The [Language Support for Java(TM) by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) extension prompts to automatically adds a few settings to the workspace, but I thought it would be a great idea to add them to the template. ## `.vscode/settings.json` ```json { "files.exclude": { "**/.classpath": true, "**/.project": true, "**/.settings": true, "**/.factorypath": true }, "java.configuration.updateBuildConfiguration": "automatic" } ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Steven/fabric-example-mod#25