Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: pre-commit-go.yml

Issue 1364333002: Add AutoIndex (Closed) Base URL: https://github.com/luci/gae.git@add_full_consistency
Patch Set: symbollls Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « impl/memory/datastore_query_execution_test.go ('k') | service/datastore/index.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # https://github.com/maruel/pre-commit-go configuration file to run checks 1 # https://github.com/maruel/pre-commit-go configuration file to run checks
2 # automatically on commit, on push and on continuous integration service after 2 # automatically on commit, on push and on continuous integration service after
3 # a push or on merge of a pull request. 3 # a push or on merge of a pull request.
4 # 4 #
5 # See https://godoc.org/github.com/maruel/pre-commit-go/checks for more 5 # See https://godoc.org/github.com/maruel/pre-commit-go/checks for more
6 # information. 6 # information.
7 7
8 coverage_settings: &COVERAGE_SETTINGS 8 coverage_settings: &COVERAGE_SETTINGS
9 use_global_inference: false 9 use_global_inference: false
10 use_coveralls: false 10 use_coveralls: false
(...skipping 20 matching lines...) Expand all
31 - {} 31 - {}
32 goimports: 32 goimports:
33 - {} 33 - {}
34 test: 34 test:
35 - extra_args: 35 - extra_args:
36 - -v 36 - -v
37 - -race 37 - -race
38 max_duration: 120 38 max_duration: 120
39 lint: 39 lint:
40 checks: 40 checks:
41 errcheck:
42 - ignores: Close
43 golint: 41 golint:
44 - blacklist: [] 42 - blacklist: []
45 govet: 43 govet:
46 - blacklist: 44 - blacklist:
47 - ' composite literal uses unkeyed fields' 45 - ' composite literal uses unkeyed fields'
48 max_duration: 20 46 max_duration: 20
49 pre-commit: 47 pre-commit:
50 checks: 48 checks:
51 build: 49 build:
52 - build_all: false 50 - build_all: false
(...skipping 14 matching lines...) Expand all
67 - extra_args: 65 - extra_args:
68 - -v 66 - -v
69 - -race 67 - -race
70 max_duration: 20 68 max_duration: 20
71 69
72 ignore_patterns: 70 ignore_patterns:
73 - .* 71 - .*
74 - _* 72 - _*
75 - '*.pb.go' 73 - '*.pb.go'
76 - '*_string.go' 74 - '*_string.go'
OLDNEW
« no previous file with comments | « impl/memory/datastore_query_execution_test.go ('k') | service/datastore/index.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698