Packet-Clearing-House / DNSAuth

Go-lang app to aggregate DNS queries to 1 minute buckets and write them to influxdb
MIT License
2 stars 2 forks source link

Code formatting and import fixes #22

Closed unix1 closed 6 years ago

unix1 commented 6 years ago

This is one of those annoying PRs that fixes code formatting to standard Go - all automated.

mrjones-plip commented 6 years ago

checking your fork and branch - all is well. merged!

unix1 commented 6 years ago
  1. what are you using to do the automatic formatting? It'd be good to standardize this

Go has an official code formatting tool - go fmt - pretty much all IDEs and editor plugins follow this standard.

  1. Do you have suggestions for CI for a golang project? I've not set up CI before, let alone for go, so i welcome all suggestions!

Both CircleCI and Travis CI provide powerful tools, and offer free plans for open source projects. I'd go with whichever was easier to set up. Feel free to create an issue and prioritize as needed.

mrjones-plip commented 6 years ago

Great, thanks for the tips!