This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to CEF 74.1.19+gb62bacf+chromium-74.0.3729.157
- Loading branch information
1 parent
2628a7c
commit cc62893
Showing
5 changed files
with
189 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
run: | ||
deadline: 5m | ||
tests: true | ||
modules-download-mode: readonly | ||
output: | ||
format: colored-line-number | ||
print-issued-lines: true | ||
print-linter-name: true | ||
linters-settings: | ||
depguard: | ||
list-type: blacklist | ||
include-go-root: true | ||
packages: | ||
- log | ||
- github.com/satori/go.uuid | ||
errcheck: | ||
check-type-assertions: true | ||
check-blank: true | ||
goconst: | ||
min-len: 3 | ||
min-occurrences: 3 | ||
gocritic: | ||
enabled-tags: | ||
- diagnostic | ||
- performance | ||
- style | ||
- opinionated | ||
- experimental | ||
disabled-checks: | ||
- sloppyReassign | ||
gofmt: | ||
simplify: true | ||
golint: | ||
min-confidence: 0.8 | ||
govet: | ||
check-shadowing: true | ||
maligned: | ||
suggest-new: true | ||
misspell: | ||
locale: US | ||
prealloc: | ||
simple: true | ||
range-loops: true | ||
for-loops: false | ||
unused: | ||
check-exported: false | ||
linters: | ||
disable-all: true | ||
enable: | ||
- deadcode | ||
- depguard | ||
- errcheck | ||
- goconst | ||
- gocritic | ||
- gofmt | ||
- goimports | ||
- golint | ||
- gosec | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- interfacer | ||
- maligned | ||
- misspell | ||
- prealloc | ||
- scopelint | ||
- staticcheck | ||
- structcheck | ||
- unconvert | ||
- unused | ||
- varcheck | ||
issues: | ||
max-per-linter: 20 | ||
max-same-issues: 3 | ||
new: false | ||
exclude-use-default: false | ||
exclude: | ||
- should call os.Exit to set exit code | ||
- "G301: Expect directory permissions to be 0750 or less" | ||
- "G302: Expect file permissions to be 0600 or less" | ||
- "G304: Potential file inclusion via variable" | ||
- "G104: Errors unhandled" | ||
- "G204: Subprocess launched with variable" |
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,7 +1,7 @@ | ||
module github.com/richardwilkes/webapp | ||
|
||
require ( | ||
github.com/richardwilkes/cef v0.3.0 | ||
github.com/richardwilkes/toolbox v1.5.0 | ||
github.com/richardwilkes/win32 v0.0.0-20190406213358-71a843438309 | ||
github.com/richardwilkes/cef v0.4.0 | ||
github.com/richardwilkes/toolbox v1.6.1 | ||
github.com/richardwilkes/win32 v0.0.0-20190428175257-646fcc5380f6 | ||
) |
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