Browse Source

style: Run goimports on everything

Similar to writeas/writeas-cli#22, this change runs goimports on all
files and changes the recommendation in the Contributing section to do
the same.
pull/12/head
Abhinav Gupta 5 years ago
parent
commit
993ee50b3d
5 changed files with 7 additions and 11 deletions
  1. +1
    -1
      README.md
  2. +1
    -3
      auth_test.go
  3. +1
    -2
      post_test.go
  4. +1
    -3
      user.go
  5. +3
    -2
      writeas.go

+ 1
- 1
README.md View File

@@ -63,7 +63,7 @@ func main() {


The library covers our usage, but might not be comprehensive of the API. So we always welcome contributions and improvements from the community. Before sending pull requests, make sure you've done the following: The library covers our usage, but might not be comprehensive of the API. So we always welcome contributions and improvements from the community. Before sending pull requests, make sure you've done the following:


* Run `go fmt` on all updated .go files.
* Run `goimports` on all updated .go files.
* Document all exported structs and funcs. * Document all exported structs and funcs.


## License ## License


+ 1
- 3
auth_test.go View File

@@ -1,8 +1,6 @@
package writeas package writeas


import (
"testing"
)
import "testing"


func TestAuthentication(t *testing.T) { func TestAuthentication(t *testing.T) {
dwac := NewDevClient() dwac := NewDevClient()


+ 1
- 2
post_test.go View File

@@ -1,10 +1,9 @@
package writeas package writeas


import ( import (
"testing"

"fmt" "fmt"
"strings" "strings"
"testing"
) )


func TestCreatePost(t *testing.T) { func TestCreatePost(t *testing.T) {


+ 1
- 3
user.go View File

@@ -1,8 +1,6 @@
package writeas package writeas


import (
"time"
)
import "time"


type ( type (
// AuthUser represents a just-authenticated user. It contains information // AuthUser represents a just-authenticated user. It contains information


+ 3
- 2
writeas.go View File

@@ -3,13 +3,14 @@ package writeas


import ( import (
"bytes" "bytes"
"code.as/core/socks"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/writeas/impart"
"io" "io"
"net/http" "net/http"
"time" "time"

"code.as/core/socks"
"github.com/writeas/impart"
) )


const ( const (


Loading…
Cancel
Save