chore: apply public open-source repo standards - #1
Merged
Conversation
- Add MIT LICENSE file - Add SECURITY.md, CONTRIBUTING.md, and CODE_OF_CONDUCT.md - Add .github templates (bug report, feature request, PR template) - Add Dependabot config for Go modules - Add CI workflow for build, vet, test, and formatting - Update .gitignore to ignore build outputs and clean malformed comment - Remove committed binaries (gls, go-ls) - Fix go vet format-string warnings and run gofmt Signed-off-by: logando-al <logando-al@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR applies standard open-source repository practices and security settings to
logando-al/gls.What's included
LICENSE— MIT License matching the READMESECURITY.md— supported versions, private vulnerability reporting, coordinated disclosureCONTRIBUTING.md— development setup, coding standards, PR processCODE_OF_CONDUCT.md— Contributor Covenant v2.1.github/dependabot.yml— weekly Go module update checks.github/workflows/ci.yml— build,go vet, race-enabled tests, andgofmtcheck.github/ISSUE_TEMPLATE/— bug report and feature request templates.github/PULL_REQUEST_TEMPLATE.md.gitignoreupdated — ignores build outputs and removes the malformed inline commentglsandgo-lsgo vetformat-string warnings and reformatted Go files withgofmtRepository settings already applied via
ghmainbranch protection enabled (PR required, 1 review, dismiss stale reviews, requireBuild and Teststatus check, block force pushes/deletions)Closes #_ (this repo had no open issue for this).