github.com/KEINOS/go-countline@v1.1.1-0.20221217083629-60710df7606b/CONTRIBUTE.md (about)

     1  # Contribute
     2  
     3  - Branch to PR: `main`
     4  - Place of the new function: `cl/_alt` directory
     5    - New alternative implementations must be set in the `cl/_alt` directory.
     6      - See the other implementations for how as examples.
     7  - Minimum requirements to be auto-merged:
     8    - New function is set in the `cl/_alt` directory.
     9    - Only two files are edited:
    10      - `cl/_alt/alt_test.go` and `cl/_alt/alt*.go` (your new implementation).
    11    - Passes all test with:
    12      - `go test -race ./...`
    13    - Passes static analysis with:
    14      - `golangci-lint run`