forked from google/mtail
-
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
Showing
191 changed files
with
9,150 additions
and
5,842 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
vm/parser.go -diff -merge | ||
vm/parser.go linguist-generated=true | ||
vm/y.output -diff -merge | ||
vm/y.output linguist-generated=true | ||
internal/vm/parser/parser.go -diff -merge | ||
internal/vm/parser/parser.go linguist-generated=true | ||
internal/vm/parser/y.output -diff -merge | ||
internal/vm/parser/y.output linguist-generated=true | ||
logo.png binary | ||
internal/mtail/logo.ico binary | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
docs/* linguist-documentation |
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
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
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,48 @@ | ||
service: | ||
prepare: | ||
- make install_deps | ||
|
||
run: | ||
tests: true | ||
build-tags: | ||
- integration | ||
skip-files: | ||
- internal/vm/parser/parser.go | ||
|
||
linters-settings: | ||
govet: | ||
check-shadowing: true | ||
|
||
linters: | ||
enable-all: true | ||
disable: | ||
- maligned | ||
- megacheck | ||
- lll | ||
- gocyclo | ||
- unparam | ||
# Not sure what this is telling me yet. | ||
- scopelint | ||
# How dare you tell me not to use inits. | ||
- gochecknoinits | ||
# Flags are fine, as are test tables. | ||
- gochecknoglobals | ||
|
||
issues: | ||
max-per-linter: 0 | ||
max-same: 0 | ||
exclude-use-default: true | ||
exclude: | ||
# # Captured by errcheck. | ||
# - '^(G104|G204):' | ||
# # Very commonly not checked. | ||
# - 'Error return value of .(.*\.Help|.*\.MarkFlagRequired|(os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked' | ||
# #- 'exported method (.*\.MarshalJSON|.*\.UnmarshalJSON|.*\.EntityURN|.*\.GoString|.*\.Pos) should have comment or be unexported' | ||
# If you liked it you shoulda put a gofix on it. | ||
- 'composite literal uses unkeyed fields' | ||
# I like shadowing err | ||
- 'declaration of "err" shadows declaration' | ||
# #- 'bad syntax for struct tag key' | ||
# #- 'bad syntax for struct tag pair' | ||
# goyacc generated error in three locations | ||
- 'this value of `mtailDollar.* is never used' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.