Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit f4bcbfc

Browse files
adamcbrownJennifer Oliver
authored andcommitted
BREAKING CHANGE: private repository moved to public github. (#2)
* BREAKING CHANGE: private repository moved to public github. Co-authored-by: sydney-ng <sydney.ng@yahoo.com> * Updated to have GetCredentials and allows for v2 mappings * fix: added tests and renamed files to Go Convention * Added Deep Search functionality to parse.go * fix: added tests for v2/mappings (untested) * added stuff * Properly returns dictionaries in v2 * fix: mappingsv2_test.go * fix: updated Readme with user provided part * fix: README.md * fix: Updated GetCredentials to take a json string instead of a gjson object. Added test for GetCredentials function * fix: renaming functions/files * fix: Update README Supported Search Pattern Types added user-provided description in supported search patterns types * fix: removed comments on cloud_env.go * fix: removed comments mappingsv1_test.go * fix: remove comments mappings_test.go * chore: remove comments mappingsv2_test.go * fix: updated gopkg to include all libraries * chore: Update README.md Fixed wording from Pull Request #3 * chore: fixed indentations to only use spaces * chore: .go files are correctly formatted * chore: fix rephrases * chore: Replaced the term module with package * Updated README.md with new user-provided pattern * Added copyright to credentials.go * chore: fixed copyright alignment * fix: fixed alignment of filtered credentials * fix: added travis & fixed linting errors * fix: removed travis comments * fix: add user provided for default unknown prefix
1 parent c0e62cd commit f4bcbfc

18 files changed

+1675
-2
lines changed

.gitconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[commit]
2+
template = .gittemplate

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
vendor/
2+
.DS_Store
3+
14
# Binaries for programs and plugins
25
*.exe
36
*.exe~

.gittemplate

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Type(<scope>): <subject>
2+
# <body>
3+
# <footer>
4+
5+
# Type should be one of the following:
6+
# * BREAKING CHANGES (breaking change) [major release -- 1.x.x]
7+
# * feat (new feature) [minor release -- x.1.x]
8+
# * fix (bug fix) [patch release -- 0.0.x]
9+
# * docs (changes to documentation)
10+
# * style (formatting, missing semi colons, etc; no code change)
11+
# * refactor (refactoring production code)
12+
# * test (adding missing tests, refactoring tests; no production code change)
13+
# * chore (updating grunt tasks etc; no production code change)
14+
# Scope is just the scope of the change. Something like (admin) or (teacher).
15+
# Subject should use clear words and say what you did.
16+
# The body should go into detail about changes made.
17+
# The footer should contain any Github (or other tool) issue references or actions.
18+
19+
# For a full example of how to write a good commit message, check out
20+
# https://conventionalcommits.org/

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
sudo: false
2+
3+
language: go
4+
5+
go:
6+
- "1.10.x"
7+
8+
git:
9+
depth: 1
10+
11+
before_install:
12+
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
13+
- dep ensure
14+
15+
install: true
16+
17+
notifications:
18+
email: false
19+
20+
before_script:
21+
- go install ./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint
22+
23+
script:
24+
- golangci-lint run
25+
- go test -v -race ./...

0 commit comments

Comments
 (0)