cli/.gitignore

66 lines
886 B
Plaintext
Raw Normal View History

2021-01-18 23:07:09 +00:00
/bin
.envrc
# man pages
/share/man/man1
# changelog file generated during release
/CHANGELOG.md
2020-07-24 20:36:58 +00:00
2021-01-18 23:07:09 +00:00
# GLab local config dir
2021-05-25 01:24:37 +00:00
.glab-cli
2021-01-18 23:07:09 +00:00
/test/testdata/.glab-cli
2020-07-24 20:36:58 +00:00
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# IntelliJ
.idea
# vim
*.sw*
*.vim
# test
_test
# VsCode
.vscode/
.devcontainer
# Dist binaries created at build with make rt
2021-01-18 23:07:09 +00:00
/dist
# The testdata-* copies created by the unit tests must be ignored or the tests
# will encounter write errors as Git attempts to add the dirs to its index.
2020-09-02 14:17:44 +00:00
test/testdata-*
2021-01-18 23:07:09 +00:00
# macOS
.DS_Store
# vim
*.swp
coverage*
vendor
2021-05-25 01:24:37 +00:00
log.txt.glab-cli
.git
2022-07-13 17:06:30 +00:00
# projectionist.vim
.projections.json
2022-10-31 19:30:53 +00:00
# prevent .zip files from being accidentally added
*.zip
*.tar
*.tar.gz
*.tar.bz2
# gotestsum test log
test-output.log
# commitlint node_modules
scripts/commit-lint/node_modules/