-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4175403
Showing
13 changed files
with
1,679 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
run: | ||
deadline: 3m | ||
issues-exit-code: 1 | ||
tests: true | ||
skip-dirs: | ||
- .coverage | ||
build-tags: | ||
- integration | ||
output: | ||
format: colored-line-number | ||
print-issued-lines: true | ||
print-linter-name: true | ||
linters-settings: | ||
errcheck: | ||
# report about not checking of errors in type assetions: `a := b.(MyStruct)`; | ||
# default is false: such cases aren't reported by default. | ||
check-type-assertions: false | ||
|
||
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`; | ||
# default is false: such cases aren't reported by default. | ||
check-blank: false | ||
govet: | ||
# report about shadowed variables | ||
check-shadowing: true | ||
golint: | ||
# minimal confidence for issues, default is 0.8 | ||
min-confidence: 0.8 | ||
gofmt: | ||
# simplify code: gofmt with `-s` option, true by default | ||
simplify: false | ||
gocyclo: | ||
# minimal code complexity to report, 30 by default (but we recommend 10-20) | ||
min-complexity: 30 | ||
dupl: | ||
# tokens count to trigger issue, 150 by default | ||
threshold: 150 | ||
goconst: | ||
# minimal length of string constant, 3 by default | ||
min-len: 3 | ||
# minimal occurrences count to trigger, 3 by default | ||
min-occurrences: 3 | ||
depguard: | ||
list-type: blacklist | ||
include-go-root: false | ||
packages: | ||
- github.com/davecgh/go-spew/spew | ||
misspell: | ||
# Correct spellings using locale preferences for US or UK. | ||
# Default is to use a neutral variety of English. | ||
# Setting locale to US will correct the British spelling of 'colour' to 'color'. | ||
locale: US | ||
lll: | ||
# max line length, lines longer will be reported. Default is 120. | ||
# '\t' is counted as 1 character by default, and can be changed with the tab-width option | ||
line-length: 120 | ||
# tab width in spaces. Default to 1. | ||
tab-width: 1 | ||
unused: | ||
# treat code as a program (not a library) and report unused exported identifiers; default is false. | ||
# XXX: if you enable this setting, unused will report a lot of false-positives in text editors: | ||
# if it's called for subdir of a project it can't find funcs usages. All text editor integrations | ||
# with golangci-lint call it on a directory with the changed file. | ||
check-exported: false | ||
unparam: | ||
# Inspect exported functions, default is false. Set to true if no external program/library imports your code. | ||
# XXX: if you enable this setting, unparam will report a lot of false-positives in text editors: | ||
# if it's called for subdir of a project it can't find external interfaces. All text editor integrations | ||
# with golangci-lint call it on a directory with the changed file. | ||
check-exported: false | ||
nakedret: | ||
# make an issue if func has more lines of code than this setting and it has naked returns; default is 30 | ||
max-func-lines: 30 | ||
prealloc: | ||
# XXX: we don't recommend using this linter before doing performance profiling. | ||
# For most programs usage of prealloc will be a premature optimization. | ||
|
||
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them. | ||
# True by default. | ||
simple: true | ||
range-loops: true # Report preallocation suggestions on range loops, true by default | ||
for-loops: true # Report preallocation suggestions on for loops, false by default | ||
linters: | ||
disable-all: true | ||
enable: | ||
- govet | ||
- errcheck | ||
- staticcheck | ||
- unused | ||
- gosimple | ||
- structcheck | ||
- varcheck | ||
- ineffassign | ||
- deadcode | ||
- golint | ||
- gosec | ||
- unconvert | ||
- goconst | ||
- gocyclo | ||
- gofmt | ||
- goimports | ||
- depguard | ||
- misspell | ||
- unparam | ||
- nakedret | ||
- prealloc | ||
- gochecknoinits | ||
issues: | ||
exclude-use-default: false | ||
exclude: | ||
# errcheck: Almost all programs ignore errors on these functions and in most cases it's ok | ||
- Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked | ||
|
||
# golint: False positive when tests are defined in package 'test' | ||
- func name will be used as test\.Test.* by other packages, and that stutters; consider calling this | ||
|
||
# govet: Common false positives | ||
- (possible misuse of unsafe.Pointer|should have signature) | ||
|
||
# megacheck: Developers tend to write in C-style with an explicit 'break' in a 'switch', so it's ok to ignore | ||
- ineffective break statement. Did you mean to break out of the outer loop | ||
|
||
# gas: Too many false-positives on 'unsafe' usage | ||
- Use of unsafe calls should be audited | ||
|
||
# gas: Too many false-positives for parametrized shell calls | ||
- Subprocess launch(ed with variable|ing should be audited) | ||
|
||
# gas: Duplicated errcheck checks | ||
- G104 | ||
|
||
# gas: Too many issues in popular repos | ||
- (Expect directory permissions to be 0750 or less|Expect file permissions to be 0600 or less) | ||
|
||
# gas: False positive is triggered by 'src, err := ioutil.ReadFile(filename)' | ||
- Potential file inclusion via variable | ||
|
||
max-per-linter: 50 | ||
max-same: 3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
language: go | ||
sudo: false | ||
go: | ||
- 1.11.x | ||
services: | ||
- docker | ||
install: | ||
- chmod 777 -R "$(pwd)" | ||
- make dep | ||
script: | ||
- make lint | ||
- make test | ||
- make integration | ||
- make coverage | ||
- bash <(curl -s https://codecov.io/bash) -f .coverage/combined.cover.out |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @asecurityteam/secdev |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Contributor Code of Conduct | ||
|
||
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. | ||
|
||
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality. | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery | ||
* Personal attacks | ||
* Trolling or insulting/derogatory comments | ||
* Public or private harassment | ||
* Publishing other's private information, such as physical or electronic addresses, without explicit permission | ||
* Submitting contributions or comments that you know to violate the intellectual property or privacy rights of others | ||
* Other unethical or unprofessional conduct | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team. | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer. Complaints will result in a response and be reviewed and investigated in a way that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident. | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.3.0, available at [http://contributor-covenant.org/version/1/3/0/][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/3/0/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Gopkg.toml example | ||
|
||
[prune] | ||
go-tests = true | ||
unused-packages = true | ||
|
||
[[override]] | ||
name = "github.com/asecurityteam/settings" | ||
version = "^0.1.0" | ||
|
||
[[constraint]] | ||
name = "github.com/rs/xstats" | ||
branch = "master" | ||
|
||
[[constraint]] | ||
name = "github.com/stretchr/testify" | ||
version = "1.3.0" | ||
|
||
[[constraint]] | ||
name = "github.com/golang/mock" | ||
version = "1.3.1" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright @ 2019 Atlassian Pty Ltd | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
TAG := $(shell git rev-parse --short HEAD) | ||
DIR := $(shell pwd -L) | ||
GOPATH := ${GOPATH} | ||
ifeq ($(GOPATH),) | ||
GOPATH := ${HOME}/go | ||
endif | ||
PROJECT_PATH := $(subst $(GOPATH)/src/,,$(DIR)) | ||
|
||
dep: | ||
docker run -ti \ | ||
--mount src="$(DIR)",target="/go/src/$(PROJECT_PATH)",type="bind" \ | ||
-w "/go/src/$(PROJECT_PATH)" \ | ||
asecurityteam/sdcli:v1 go dep | ||
|
||
lint: | ||
docker run -ti \ | ||
--mount src="$(DIR)",target="/go/src/$(PROJECT_PATH)",type="bind" \ | ||
-w "/go/src/$(PROJECT_PATH)" \ | ||
asecurityteam/sdcli:v1 go lint | ||
|
||
test: | ||
docker run -ti \ | ||
--mount src="$(DIR)",target="/go/src/$(PROJECT_PATH)",type="bind" \ | ||
-w "/go/src/$(PROJECT_PATH)" \ | ||
asecurityteam/sdcli:v1 go test | ||
|
||
integration: | ||
docker run -ti \ | ||
--mount src="$(DIR)",target="/go/src/$(PROJECT_PATH)",type="bind" \ | ||
-w "/go/src/$(PROJECT_PATH)" \ | ||
asecurityteam/sdcli:v1 go integration | ||
|
||
coverage: | ||
docker run -ti \ | ||
--mount src="$(DIR)",target="/go/src/$(PROJECT_PATH)",type="bind" \ | ||
-w "/go/src/$(PROJECT_PATH)" \ | ||
asecurityteam/sdcli:v1 go coverage | ||
|
||
doc: ; | ||
|
||
build-dev: ; | ||
|
||
build: ; | ||
|
||
run: ; | ||
|
||
deploy-dev: ; | ||
|
||
deploy: ; |
Oops, something went wrong.