codeclimate 0.85.15 → 0.85.22

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a79c9b93c5e9fa3b77d5561dfdff2aa646eb5d4468ea75f349f6d9bd3147cf96
4
- data.tar.gz: e2e0b67432d4fabf78e6ede0adedcd6dcaf54c3501db7f39c168f32b9ef3247b
3
+ metadata.gz: dec954c1477d7524ac59bb5f317af30a868c52c353d66b8c57c3c1be58f9239d
4
+ data.tar.gz: f6149c9ca4f3414ac8b63047bddd6a32ea6144905a61fa6e5748252aa5487ed4
5
5
  SHA512:
6
- metadata.gz: df0bb5a7367bae62e30a604d488f12ef0392e62d002d5aae363ecec5781b0ad88948311c20554e78787d1d13a389a346a44537a77edba9b7a8acfc64b8b6d463
7
- data.tar.gz: 0a5c7049c2a29cb2e2f9508c2ace48b5dd3e6b189119ad213d044ddc99ee8cc3759c364994ad208be4d6fb8ad3772259409bd4bb7338f73b2e94a77d203b39f5
6
+ metadata.gz: 7d1c9237c1a8bb5eea7b0d25b3fc6faa7d6377301d4fddc365acbfc0aa27007120c9a71da8120a041d27dc2782867da492c9d15ad26ab01bf840321fe75dad45
7
+ data.tar.gz: 70b6e2262c037333d0c05dbc1e48cb193eead5ae2793025a48f2b375c0c1f6687377d8739b13c450f92b0332dfe899f8640443dbbb30b8934ea28b824ea836f6
@@ -48,6 +48,11 @@ credo:
48
48
  description: >
49
49
  A static code analysis tool for the Elixir language with a focus on code
50
50
  consistency and teaching.
51
+ dart:
52
+ channels:
53
+ stable: codeclimate/codeclimate-dart
54
+ description: >
55
+ A static analysis tool that helps improve code quality for the Dart language.
51
56
  duplication:
52
57
  channels:
53
58
  stable: codeclimate/codeclimate-duplication
@@ -149,10 +154,12 @@ pep8:
149
154
  phan:
150
155
  channels:
151
156
  stable: codeclimate/codeclimate-phan
157
+ beta: codeclimate/codeclimate-phan:beta
152
158
  description: Phan is a static analyzer for PHP.
153
159
  phpcodesniffer:
154
160
  channels:
155
161
  stable: codeclimate/codeclimate-phpcodesniffer
162
+ beta: codeclimate/codeclimate-phpcodesniffer:beta
156
163
  description: Detects violations of a defined set of coding standards in PHP.
157
164
  phpmd:
158
165
  channels:
@@ -161,6 +168,7 @@ phpmd:
161
168
  pmd:
162
169
  channels:
163
170
  stable: codeclimate/codeclimate-pmd
171
+ beta: codeclimate/codeclimate-pmd:beta
164
172
  description: A source code analyzer for Java.
165
173
  pylint:
166
174
  channels:
@@ -216,6 +224,7 @@ rubocop:
216
224
  rubocop-0-74: codeclimate/codeclimate-rubocop:rubocop-0-74
217
225
  rubocop-0-75: codeclimate/codeclimate-rubocop:rubocop-0-75
218
226
  rubocop-0-76: codeclimate/codeclimate-rubocop:rubocop-0-76
227
+ rubocop-0-76-airbnb: codeclimate/codeclimate-rubocop:rubocop-0-76-airbnb
219
228
  rubocop-0-77: codeclimate/codeclimate-rubocop:rubocop-0-77
220
229
  rubocop-0-78: codeclimate/codeclimate-rubocop:rubocop-0-78
221
230
  rubocop-0-79: codeclimate/codeclimate-rubocop:rubocop-0-79
@@ -228,6 +237,11 @@ rubocop:
228
237
  rubocop-0-86: codeclimate/codeclimate-rubocop:rubocop-0-86
229
238
  rubocop-0-87: codeclimate/codeclimate-rubocop:rubocop-0-87
230
239
  rubocop-0-88: codeclimate/codeclimate-rubocop:rubocop-0-88
240
+ rubocop-0-89: codeclimate/codeclimate-rubocop:rubocop-0-89
241
+ rubocop-0-90: codeclimate/codeclimate-rubocop:rubocop-0-90
242
+ rubocop-0-92: codeclimate/codeclimate-rubocop:rubocop-0-92
243
+ rubocop-1-7-0: codeclimate/codeclimate-rubocop:rubocop-1-7-0
244
+ rubocop-1-8-1: codeclimate/codeclimate-rubocop:rubocop-1-8-1
231
245
  description: A Ruby static code analyzer, based on the community Ruby style guide.
232
246
  rubymotion:
233
247
  channels:
@@ -247,6 +261,10 @@ scss-lint:
247
261
  channels:
248
262
  stable: codeclimate/codeclimate-scss-lint
249
263
  description: A configurable tool for writing clean and consistent SCSS.
264
+ semgrep:
265
+ channels:
266
+ stable: codeclimate/codeclimate-semgrep
267
+ description: A configurable tool that allows for custom static analysis on multiple languages.
250
268
  shellcheck:
251
269
  channels:
252
270
  stable: codeclimate/codeclimate-shellcheck
@@ -268,6 +286,11 @@ sonar-python:
268
286
  stable: codeclimate/codeclimate-sonar-python
269
287
  description: SonarLint for Python.
270
288
  minimum_memory_limit: 2_048_000_000
289
+ standard:
290
+ channels:
291
+ stable: codeclimate/codeclimate-standard
292
+ beta: codeclimate/codeclimate-standard
293
+ description: Standard static analysis tool.
271
294
  structure:
272
295
  channels:
273
296
  stable: codeclimate/codeclimate-structure
@@ -9,9 +9,9 @@ module CC
9
9
  EngineDetails = Struct.new(:image, :command, :description, :memory)
10
10
  EngineDetailsNotFoundError = Class.new(StandardError)
11
11
 
12
- def initialize(path = DEFAULT_MANIFEST_PATH, prefix = "")
12
+ def initialize(path = DEFAULT_MANIFEST_PATH, prefix = nil)
13
13
  @yaml = YAML.safe_load(File.read(path))
14
- @prefix = prefix
14
+ @prefix = prefix || ENV["CODECLIMATE_PREFIX"] || ""
15
15
  end
16
16
 
17
17
  def each
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codeclimate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.15
4
+ version: 0.85.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code Climate
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-14 00:00:00.000000000 Z
11
+ date: 2021-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -255,7 +255,7 @@ homepage: https://codeclimate.com
255
255
  licenses:
256
256
  - AGPL
257
257
  metadata: {}
258
- post_install_message:
258
+ post_install_message:
259
259
  rdoc_options: []
260
260
  require_paths:
261
261
  - lib
@@ -271,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
271
271
  version: '0'
272
272
  requirements: []
273
273
  rubygems_version: 3.0.3
274
- signing_key:
274
+ signing_key:
275
275
  specification_version: 4
276
276
  summary: Code Climate CLI
277
277
  test_files: []