TheThingsNetwork / lorawan-stack

The Things Stack, an Open Source LoRaWAN Network Server
https://www.thethingsindustries.com/stack/
Apache License 2.0
993 stars 309 forks source link

Add configuration snippets for popular editors #5861

Open ysmilda opened 2 years ago

ysmilda commented 2 years ago

Summary

To make life easier on starting developers it would be nice to share the editor settings that we have accumulated over time. This will ensure that others have access to the same checks as we do. This can either be done in the DEVELOPMENT.md or as complete configuration files.

Current Situation

N/A

Why do we need this? Who uses it, and when?

This would be a great help for new developers as well as a way of documenting the settings used within the team.

Proposed Implementation

No response

Contributing

Code of Conduct

nicholaspcr commented 2 years ago

A few things that come to mind would be:

We can have some sort of repository dedicated for both and refer to that in the Development.md

ysmilda commented 1 year ago

For use of the vscode-proto3 plugin in vscode the following needs to be added to the settings.json to have it work with the stack:

"protoc": {
  "options": ["--proto_path=${workspaceRoot}/api"]
},