pronto-golang 0.0.18 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/pronto/golang/tools/golangci_lint.rb +6 -1
- data/lib/pronto/golang/version.rb +1 -1
- metadata +31 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e34cd13eba4ded017e5770d9f0e43a7936d9655046eb1c6f3c9692f6086b94c4
|
4
|
+
data.tar.gz: '0951133e907b0e0c03476fc8b5f957c476d37fc366e686bb6f5efb7a60779040'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8ae5507b18b94a3bca8082598cf9caffef7959cf66ce7fb62d426d556cde064263c1c6d40a7390b7014b684575a87ae114c5fec6da89f9460736ff771c18cab
|
7
|
+
data.tar.gz: d98046fdf94a6d5d18c3f90e2ea26c7938ae3456299050ec14cf2ffa5a58ff765e57126a86532f6b6800a81f9edbfcc12c773b610cfef1e70e3aac17486babcb
|
data/README.md
CHANGED
@@ -10,9 +10,9 @@
|
|
10
10
|
|----------|----------|
|
11
11
|
| go vet | - |
|
12
12
|
| golint | go install golang.org/x/lint/golint@latest |
|
13
|
-
| gosec | go install github.com/securego/gosec/v2/cmd/gosec@v2.
|
13
|
+
| gosec | go install github.com/securego/gosec/v2/cmd/gosec@v2.22.8 |
|
14
14
|
| staticcheck | go install honnef.co/go/tools/cmd/staticcheck@latest |
|
15
|
-
| golangci-lint | See [Install instructions](https://golangci-lint.run/usage/install/) |
|
15
|
+
| golangci-lint v2 | See [Install instructions](https://golangci-lint.run/usage/install/) |
|
16
16
|
|
17
17
|
## Configuring tools
|
18
18
|
|
@@ -9,12 +9,17 @@ module Pronto
|
|
9
9
|
'golangci-lint'
|
10
10
|
end
|
11
11
|
|
12
|
+
def initialize(config)
|
13
|
+
super(config)
|
14
|
+
end
|
15
|
+
|
12
16
|
def execution_mode
|
13
17
|
'project'
|
14
18
|
end
|
15
19
|
|
16
20
|
def default_parameters
|
17
|
-
|
21
|
+
# Supports golangci-lint v2
|
22
|
+
'run --output.json.path=stdout --show-stats=false --color=never'
|
18
23
|
end
|
19
24
|
|
20
25
|
def process_output(output)
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pronto-golang
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Schoknecht
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: pronto
|
@@ -52,7 +51,34 @@ dependencies:
|
|
52
51
|
- - "~>"
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '3.12'
|
55
|
-
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: base64
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 0.3.0
|
61
|
+
type: :development
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 0.3.0
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: ostruct
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.6.3
|
75
|
+
type: :development
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: 0.6.3
|
56
82
|
email: tobias.schoknecht@viafintech.com
|
57
83
|
executables: []
|
58
84
|
extensions: []
|
@@ -78,7 +104,6 @@ homepage: https://github.com/viafintech/pronto-golang
|
|
78
104
|
licenses:
|
79
105
|
- MIT
|
80
106
|
metadata: {}
|
81
|
-
post_install_message:
|
82
107
|
rdoc_options: []
|
83
108
|
require_paths:
|
84
109
|
- lib
|
@@ -93,8 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
118
|
- !ruby/object:Gem::Version
|
94
119
|
version: '0'
|
95
120
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
121
|
+
rubygems_version: 3.6.9
|
98
122
|
specification_version: 4
|
99
123
|
summary: Pronto runner for golang tools
|
100
124
|
test_files: []
|