diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 9b7368d..28bb067 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -27,9 +27,9 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. -**Kitex version:** +**Version:** -Please provide the version of Kitex you are using. +Please provide the version of {project_name} you are using. **Environment:** diff --git a/.gitignore b/.gitignore index 644df37..398f12b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,13 @@ # Dependency directories (remove the comment below to include it) # vendor/ +# Go workspace file +go.work +go.work.sum + +# env file +.env + # the result of the go build output* output/* diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e60a59e..bcb27a3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,9 +47,5 @@ Before you submit your Pull Request (PR) consider the following guidelines: - Maybe you need familiar with [Actions](https://github.com/features/actions)(our default workflow tool). ## Code Style Guides -Also see [Pingcap General advice](https://pingcap.github.io/style-guide/general.html). - -Good resources: - [Effective Go](https://golang.org/doc/effective_go) - [Go Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments) -- [Uber Go Style Guide](https://github.com/uber-go/guide/blob/master/style.md)