danielpaulus / go-ios

This is an operating system independent implementation of iOS device features. You can run UI tests, launch or kill apps, install apps etc. with it.
MIT License
949 stars 182 forks source link

Standarize and enforce linting #233

Open bartekpacia opened 1 year ago

bartekpacia commented 1 year ago

Would be great to have some static analysis in place, to avoid common mistakes.

IMHO, the bare minimum is to use (and enforce) go vet.

I'm also a fan of staticcheck, which is a popular successor to golint (which is deprecated). We could use it as well

danielpaulus commented 1 year ago

Agreed.