codeclimate 0.69.0 → 0.70.0
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/bin/prep-release +1 -1
- data/config/engines.yml +32 -323
- data/lib/cc/analyzer.rb +5 -4
- data/lib/cc/analyzer/bridge.rb +106 -0
- data/lib/cc/analyzer/composite_container_listener.rb +4 -8
- data/lib/cc/analyzer/container.rb +44 -41
- data/lib/cc/analyzer/container/result.rb +74 -0
- data/lib/cc/analyzer/container_listener.rb +2 -7
- data/lib/cc/analyzer/engine.rb +53 -45
- data/lib/cc/analyzer/engine_output.rb +40 -10
- data/lib/cc/analyzer/formatters/formatter.rb +2 -0
- data/lib/cc/analyzer/formatters/html_formatter.rb +4 -0
- data/lib/cc/analyzer/formatters/json_formatter.rb +1 -0
- data/lib/cc/analyzer/formatters/plain_text_formatter.rb +8 -1
- data/lib/cc/analyzer/issue.rb +4 -2
- data/lib/cc/analyzer/issue_validations/relative_path_validation.rb +6 -2
- data/lib/cc/analyzer/issue_validator.rb +3 -32
- data/lib/cc/analyzer/logging_container_listener.rb +9 -7
- data/lib/cc/analyzer/measurement.rb +22 -0
- data/lib/cc/analyzer/measurement_validations.rb +16 -0
- data/lib/cc/analyzer/measurement_validations/name_validation.rb +23 -0
- data/lib/cc/analyzer/measurement_validations/type_validation.rb +15 -0
- data/lib/cc/analyzer/measurement_validations/validation.rb +27 -0
- data/lib/cc/analyzer/measurement_validations/value_validation.rb +21 -0
- data/lib/cc/analyzer/measurement_validator.rb +11 -0
- data/lib/cc/analyzer/raising_container_listener.rb +18 -18
- data/lib/cc/analyzer/statsd_container_listener.rb +22 -22
- data/lib/cc/analyzer/validator.rb +38 -0
- data/lib/cc/cli.rb +12 -12
- data/lib/cc/cli/analyze.rb +42 -60
- data/lib/cc/cli/analyze/engine_failure.rb +11 -0
- data/lib/cc/cli/command.rb +0 -10
- data/lib/cc/cli/engines.rb +0 -3
- data/lib/cc/cli/engines/engine_command.rb +2 -34
- data/lib/cc/cli/engines/install.rb +11 -17
- data/lib/cc/cli/engines/list.rb +5 -3
- data/lib/cc/cli/prepare.rb +5 -11
- data/lib/cc/cli/runner.rb +1 -2
- data/lib/cc/cli/test.rb +0 -1
- data/lib/cc/cli/validate_config.rb +49 -63
- data/lib/cc/cli/version_checker.rb +3 -3
- data/lib/cc/config.rb +70 -0
- data/lib/cc/config/checks_adapter.rb +40 -0
- data/lib/cc/config/default_adapter.rb +52 -0
- data/lib/cc/config/engine.rb +41 -0
- data/lib/cc/config/engine_set.rb +47 -0
- data/lib/cc/config/json_adapter.rb +17 -0
- data/lib/cc/config/prepare.rb +92 -0
- data/lib/cc/config/validation/check_validator.rb +34 -0
- data/lib/cc/config/validation/engine_validator.rb +89 -0
- data/lib/cc/config/validation/fetch_validator.rb +78 -0
- data/lib/cc/config/validation/file_validator.rb +112 -0
- data/lib/cc/config/validation/hash_validations.rb +52 -0
- data/lib/cc/config/validation/json.rb +31 -0
- data/lib/cc/config/validation/prepare_validator.rb +40 -0
- data/lib/cc/config/validation/yaml.rb +66 -0
- data/lib/cc/config/yaml_adapter.rb +73 -0
- data/lib/cc/engine_registry.rb +74 -0
- data/lib/cc/workspace/path_tree/dir_node.rb +1 -1
- metadata +36 -55
- data/bin/codeclimate-init +0 -6
- data/config/coffeelint/coffeelint.json +0 -129
- data/config/csslint/.csslintrc +0 -2
- data/config/eslint/.eslintignore +0 -1
- data/config/eslint/.eslintrc.yml +0 -277
- data/config/rubocop/.rubocop.yml +0 -1156
- data/lib/cc/analyzer/config.rb +0 -86
- data/lib/cc/analyzer/engine_registry.rb +0 -36
- data/lib/cc/analyzer/engines_config_builder.rb +0 -97
- data/lib/cc/analyzer/engines_runner.rb +0 -64
- data/lib/cc/cli/config.rb +0 -44
- data/lib/cc/cli/config_generator.rb +0 -108
- data/lib/cc/cli/engines/disable.rb +0 -38
- data/lib/cc/cli/engines/enable.rb +0 -41
- data/lib/cc/cli/engines/remove.rb +0 -35
- data/lib/cc/cli/init.rb +0 -117
- data/lib/cc/cli/prepare/quality.rb +0 -64
- data/lib/cc/cli/upgrade_config_generator.rb +0 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59f45582b9fed42cb7f6f071a4d0917c4059de6a
|
4
|
+
data.tar.gz: 0a16de048b698a28681867c76d95b97d4b784699
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52a06f97ba880545b6e192d4ed9e77fcdaf9a39080e80d3078ea23d27b065201fadea4019cc187feb173ff896098bae891e275a451ff3a54dd14b6d7f9882d95
|
7
|
+
data.tar.gz: 9424f3985ff48d1c180af2b9eba8588bb7bf44410bd802d745ca748f5a0b6e00bff43ae12ff81ad5922d705d093014f0cb55ad82d6de2f700521fae122cc5688
|
data/bin/prep-release
CHANGED
data/config/engines.yml
CHANGED
@@ -3,135 +3,49 @@
|
|
3
3
|
# Each engine must have `channels` (with a `stable` key) and `description`. The
|
4
4
|
# values in `channels` will be passed to `docker run` and so may be any value
|
5
5
|
# appropriate for that (repo/name:tag, image id, etc).
|
6
|
-
#
|
7
|
-
# When a repo has files that match the `enable_regexps`, that engine will be
|
8
|
-
# enabled by default in the codeclimate.yml file. That file will also have in it
|
9
|
-
# the `default_ratings_paths` globs, which are used during analysis to determine
|
10
|
-
# which files should be rated.
|
11
|
-
#
|
12
6
|
apexmetrics:
|
13
7
|
channels:
|
14
8
|
stable: codeclimate/codeclimate-apexmetrics
|
15
9
|
description: ApexMetrics is a static code analysis tool for Salesforce.com Apex.
|
16
|
-
community: true
|
17
10
|
brakeman:
|
18
11
|
channels:
|
19
12
|
stable: codeclimate/codeclimate-brakeman
|
20
|
-
description:
|
21
|
-
community: false
|
22
|
-
upgrade_languages:
|
23
|
-
- Ruby
|
24
|
-
enable_regexps:
|
25
|
-
- ^app\/.*\.rb
|
26
|
-
default_ratings_paths:
|
27
|
-
- "Gemfile.lock"
|
28
|
-
- "**.erb"
|
29
|
-
- "**.haml"
|
30
|
-
- "**.rb"
|
31
|
-
- "**.rhtml"
|
32
|
-
- "**.slim"
|
13
|
+
description: A static analysis tool which checks Ruby on Rails applications for security vulnerabilities.
|
33
14
|
bundler-audit:
|
34
15
|
channels:
|
35
16
|
stable: codeclimate/codeclimate-bundler-audit
|
36
17
|
description: Patch-level verification for Bundler.
|
37
|
-
community: false
|
38
|
-
upgrade_languages:
|
39
|
-
- Ruby
|
40
|
-
enable_regexps:
|
41
|
-
- ^Gemfile\.lock$
|
42
|
-
default_ratings_paths:
|
43
|
-
- Gemfile.lock
|
44
18
|
checkstyle:
|
45
19
|
channels:
|
46
20
|
stable: codeclimate/codeclimate-checkstyle
|
47
21
|
beta: codeclimate/codeclimate-checkstyle:beta
|
48
22
|
description: Helps programmers write Java that adheres to a coding standard.
|
49
|
-
community: false
|
50
|
-
enable_regexps:
|
51
|
-
- \.java$
|
52
|
-
default_ratings_paths:
|
53
|
-
- "**.java"
|
54
|
-
complexity-ruby:
|
55
|
-
channels:
|
56
|
-
beta: codeclimate/codeclimate-complexity-ruby:b47
|
57
|
-
description: Code Climate Complexity Checks for Ruby
|
58
|
-
community: false
|
59
|
-
default_ratings_paths:
|
60
|
-
- "**.rb"
|
61
|
-
default_config:
|
62
|
-
languages:
|
63
|
-
- ruby
|
64
23
|
csslint:
|
65
24
|
channels:
|
66
25
|
stable: codeclimate/codeclimate-csslint
|
67
26
|
description: Automated linting of Cascading Stylesheets.
|
68
|
-
community: false
|
69
|
-
enable_regexps:
|
70
|
-
- \.css$
|
71
|
-
default_ratings_paths:
|
72
|
-
- "**.css"
|
73
27
|
coffeelint:
|
74
28
|
channels:
|
75
29
|
stable: codeclimate/codeclimate-coffeelint
|
76
30
|
description: A style checker for CoffeeScript.
|
77
|
-
community: false
|
78
|
-
enable_regexps:
|
79
|
-
- \.coffee$
|
80
|
-
default_ratings_paths:
|
81
|
-
- "**.coffee"
|
82
31
|
codescan:
|
83
32
|
channels:
|
84
33
|
beta: codeclimate/codeclimate-codescan:beta
|
85
34
|
description: >
|
86
35
|
A static analysis tool for Salesforce.com Apex, Visual Force, Aura and
|
87
36
|
Lightning.
|
88
|
-
community: true
|
89
|
-
enable_regexps:
|
90
|
-
- \.cls$
|
91
|
-
default_ratings_paths:
|
92
|
-
- "**.cls"
|
93
37
|
credo:
|
94
38
|
channels:
|
95
39
|
beta: codeclimate/codeclimate-credo:beta
|
96
40
|
description: >
|
97
41
|
A static code analysis tool for the Elixir language with a focus on code
|
98
42
|
consistency and teaching.
|
99
|
-
community: true
|
100
|
-
enable_regexps:
|
101
|
-
- \.ex$
|
102
|
-
- \.exs$
|
103
|
-
default_ratings_paths:
|
104
|
-
- "**.ex"
|
105
|
-
- "**.exs"
|
106
43
|
duplication:
|
107
44
|
channels:
|
108
45
|
beta: codeclimate/codeclimate-duplication:beta
|
109
46
|
cronopio: codeclimate/codeclimate-duplication:cronopio
|
110
47
|
stable: codeclimate/codeclimate-duplication
|
111
|
-
description: Structural duplication detection for Ruby, Python, JavaScript, and PHP.
|
112
|
-
community: false
|
113
|
-
enable_regexps:
|
114
|
-
- \.inc$
|
115
|
-
- \.js$
|
116
|
-
- \.jsx$
|
117
|
-
- \.module$
|
118
|
-
- \.php$
|
119
|
-
- \.py$
|
120
|
-
- \.rb$
|
121
|
-
default_ratings_paths:
|
122
|
-
- "**.inc"
|
123
|
-
- "**.js"
|
124
|
-
- "**.jsx"
|
125
|
-
- "**.module"
|
126
|
-
- "**.php"
|
127
|
-
- "**.py"
|
128
|
-
- "**.rb"
|
129
|
-
default_config:
|
130
|
-
languages:
|
131
|
-
- ruby
|
132
|
-
- javascript
|
133
|
-
- python
|
134
|
-
- php
|
48
|
+
description: Structural duplication detection for Ruby, Python, Java, JavaScript, and PHP.
|
135
49
|
eslint:
|
136
50
|
channels:
|
137
51
|
stable: codeclimate/codeclimate-eslint
|
@@ -140,266 +54,108 @@ eslint:
|
|
140
54
|
eslint-3: codeclimate/codeclimate-eslint:eslint-3
|
141
55
|
eslint-4: codeclimate/codeclimate-eslint:eslint-4
|
142
56
|
description: A JavaScript/JSX linting utility.
|
143
|
-
community: false
|
144
|
-
upgrade_languages:
|
145
|
-
- JavaScript
|
146
|
-
enable_regexps:
|
147
|
-
- \.js$
|
148
|
-
- \.jsx$
|
149
|
-
default_ratings_paths:
|
150
|
-
- "**.js"
|
151
|
-
- "**.jsx"
|
152
|
-
config_files:
|
153
|
-
.eslintrc.yml:
|
154
|
-
- .eslintrc
|
155
|
-
- .eslintrc.js
|
156
|
-
- .eslintrc.json
|
157
|
-
- .eslintrc.yaml
|
158
57
|
flog:
|
159
58
|
channels:
|
160
59
|
beta: codeclimate/codeclimate-flog:beta
|
161
60
|
stable: codeclimate/codeclimate-flog
|
162
61
|
description: Easy to read reporting of complexity/pain for Ruby code.
|
163
|
-
community: true
|
164
|
-
enable_regexps:
|
165
|
-
- \.rb$
|
166
|
-
default_ratings_paths:
|
167
|
-
- "**.rb"
|
168
|
-
default_config:
|
169
|
-
all: false
|
170
|
-
threshold: 0.6
|
171
62
|
git-legal:
|
172
63
|
channels:
|
173
64
|
stable: codeclimate/codeclimate-git-legal
|
174
65
|
description: License compliance and compatibility analysis.
|
175
|
-
community: true
|
176
|
-
enable_regexps:
|
177
|
-
- "^*.gemspec$"
|
178
|
-
- "^Gemfile*$"
|
179
|
-
- "^composer.*$"
|
180
|
-
- "^package.json$"
|
181
|
-
- "^requirements.txt$"
|
182
|
-
- "^yarn.lock$"
|
183
|
-
default_config:
|
184
|
-
default_ratings_paths:
|
185
|
-
- "*.gemspec"
|
186
|
-
- "Gemfile*"
|
187
|
-
- "composer.*"
|
188
|
-
- "package.json"
|
189
|
-
- "requirements.txt"
|
190
|
-
- "yarn.lock"
|
191
66
|
gofmt:
|
192
67
|
channels:
|
193
68
|
stable: codeclimate/codeclimate-gofmt
|
194
69
|
description: Checks the formatting of Go programs.
|
195
|
-
community: true
|
196
|
-
enable_regexps:
|
197
|
-
- \.go$
|
198
|
-
default_ratings_paths:
|
199
|
-
- "**.go"
|
200
70
|
golint:
|
201
71
|
channels:
|
202
72
|
stable: codeclimate/codeclimate-golint
|
203
73
|
description: A linter for Go.
|
204
|
-
community: true
|
205
|
-
enable_regexps:
|
206
|
-
- \.go$
|
207
|
-
default_ratings_paths:
|
208
|
-
- "**.go"
|
209
74
|
govet:
|
210
75
|
channels:
|
211
76
|
stable: codeclimate/codeclimate-govet
|
212
77
|
description: Reports suspicious constructs in Go programs.
|
213
|
-
community: true
|
214
|
-
enable_regexps:
|
215
|
-
- \.go$
|
216
|
-
default_ratings_paths:
|
217
|
-
- "**.go"
|
218
78
|
grep:
|
219
79
|
channels:
|
220
80
|
stable: codeclimate/codeclimate-grep
|
221
|
-
description: Detects specified patterns in files
|
222
|
-
community: false
|
223
|
-
enable_regexps:
|
224
|
-
default_ratings_paths:
|
81
|
+
description: Detects specified patterns in files.
|
225
82
|
fixme:
|
226
83
|
channels:
|
227
84
|
stable: codeclimate/codeclimate-fixme
|
228
85
|
description: Finds FIXME, TODO, HACK, etc. comments.
|
229
|
-
community: false
|
230
|
-
enable_regexps:
|
231
|
-
- .+
|
232
|
-
default_ratings_paths: []
|
233
86
|
foodcritic:
|
234
87
|
channels:
|
235
88
|
stable: codeclimate/codeclimate-foodcritic
|
236
89
|
description: Lint tool for Chef cookbooks.
|
237
|
-
|
238
|
-
|
239
|
-
|
90
|
+
git-legal:
|
91
|
+
channels:
|
92
|
+
stable: codeclimate/codeclimate-git-legal
|
93
|
+
description: License compliance and compatibility analysis.
|
240
94
|
gnu-complexity:
|
241
95
|
channels:
|
242
96
|
stable: codeclimate/codeclimate-gnu-complexity
|
243
|
-
description: Checks complexity of C code
|
244
|
-
community: true
|
245
|
-
enable_regexps:
|
246
|
-
- \.c$
|
247
|
-
default_ratings_paths:
|
248
|
-
- "**.c"
|
97
|
+
description: Checks complexity of C code.
|
249
98
|
haxe-checkstyle:
|
250
99
|
channels:
|
251
100
|
stable: codeclimate/codeclimate-haxe-checkstyle
|
252
101
|
description: Checkstyle is a development library to help developers write Haxe code that adheres to a coding standard.
|
253
|
-
community: true
|
254
|
-
enable_regexps:
|
255
|
-
- \.hx$
|
256
|
-
default_ratings_paths:
|
257
|
-
- "**.hx"
|
258
102
|
haml-lint:
|
259
103
|
channels:
|
260
104
|
beta: codeclimate/codeclimate-haml-lint:beta
|
261
|
-
description:
|
262
|
-
community: true
|
263
|
-
enable_regexps:
|
264
|
-
- \.haml$
|
265
|
-
default_ratings_paths:
|
266
|
-
- "**.haml"
|
105
|
+
description: A tool for writing clean and consistent HAML.
|
267
106
|
hlint:
|
268
107
|
channels:
|
269
108
|
stable: codeclimate/codeclimate-hlint
|
270
|
-
description:
|
271
|
-
community: true
|
272
|
-
enable_regexps:
|
273
|
-
- \.hs$
|
274
|
-
default_ratings_paths:
|
275
|
-
- "**.hs"
|
109
|
+
description: A linter for Haskell programs.
|
276
110
|
kibit:
|
277
111
|
channels:
|
278
112
|
stable: codeclimate/codeclimate-kibit
|
279
113
|
description: Static code analyzer for Clojure, ClojureScript, cljx and other Clojure variants.
|
280
|
-
community: true
|
281
|
-
enable_regexps:
|
282
|
-
- \.clj$
|
283
|
-
- \.cljc$
|
284
|
-
- \.cljs$
|
285
|
-
default_ratings_paths:
|
286
|
-
- "**.clj"
|
287
|
-
- "**.cljc"
|
288
|
-
- "**.cljs"
|
289
114
|
markdownlint:
|
290
115
|
channels:
|
291
116
|
stable: codeclimate/codeclimate-markdownlint
|
292
117
|
description: Flags style issues within Markdown files.
|
293
|
-
community: true
|
294
|
-
enable_regexps:
|
295
|
-
- \.markdown$
|
296
|
-
- \.md$
|
297
|
-
default_ratings_paths:
|
298
|
-
- "**.markdown"
|
299
|
-
- "**.md"
|
300
118
|
nodesecurity:
|
301
119
|
channels:
|
302
120
|
stable: codeclimate/codeclimate-nodesecurity
|
303
121
|
description: Security tool for Node.js dependencies.
|
304
|
-
community: true
|
305
|
-
enable_regexps:
|
306
|
-
default_ratings_paths:
|
307
122
|
pep8:
|
308
123
|
channels:
|
309
124
|
stable: codeclimate/codeclimate-pep8
|
310
125
|
description: Static analysis tool to check Python code against the style conventions outlined in PEP-8.
|
311
|
-
community: false
|
312
|
-
enable_regexps:
|
313
|
-
default_ratings_paths:
|
314
|
-
- "**.py"
|
315
126
|
phan:
|
316
127
|
channels:
|
317
128
|
stable: codeclimate/codeclimate-phan
|
318
129
|
description: Phan is a static analyzer for PHP.
|
319
|
-
community: true
|
320
|
-
enable_regexps:
|
321
|
-
- \.php$
|
322
|
-
- \.module$
|
323
|
-
- \.inc$
|
324
|
-
default_ratings_paths:
|
325
|
-
- "**.php"
|
326
|
-
- "**.module"
|
327
|
-
- "**.inc"
|
328
130
|
phpcodesniffer:
|
329
131
|
channels:
|
330
132
|
stable: codeclimate/codeclimate-phpcodesniffer
|
331
133
|
description: Detects violations of a defined set of coding standards in PHP.
|
332
|
-
community: false
|
333
|
-
enable_regexps:
|
334
|
-
default_ratings_paths:
|
335
|
-
- "**.php"
|
336
|
-
- "**.module"
|
337
|
-
- "**.inc"
|
338
134
|
phpmd:
|
339
135
|
channels:
|
340
136
|
stable: codeclimate/codeclimate-phpmd
|
341
137
|
description: A PHP static analysis tool.
|
342
|
-
community: false
|
343
|
-
upgrade_languages:
|
344
|
-
- PHP
|
345
|
-
enable_regexps:
|
346
|
-
- \.php$
|
347
|
-
- \.module$
|
348
|
-
- \.inc$
|
349
|
-
default_ratings_paths:
|
350
|
-
- "**.php"
|
351
|
-
- "**.module"
|
352
|
-
- "**.inc"
|
353
138
|
proselint:
|
354
139
|
channels:
|
355
140
|
beta: codeclimate/codeclimate-proselint:beta
|
356
141
|
description: A linter for prose.
|
357
|
-
community: true
|
358
|
-
enable_regexps:
|
359
|
-
- \.markdown$
|
360
|
-
- \.md$
|
361
|
-
default_ratings_paths:
|
362
|
-
- "**.markdown"
|
363
|
-
- "**.md"
|
364
142
|
pmd:
|
365
143
|
channels:
|
366
144
|
stable: codeclimate/codeclimate-pmd
|
367
145
|
beta: codeclimate/codeclimate-pmd:beta
|
368
|
-
description:
|
369
|
-
community: false
|
370
|
-
enable_regexps:
|
371
|
-
- \.java$
|
372
|
-
default_ratings_paths:
|
373
|
-
- "**.java"
|
146
|
+
description: A source code analyzer for Java.
|
374
147
|
radon:
|
375
148
|
channels:
|
376
149
|
stable: codeclimate/codeclimate-radon
|
377
150
|
description: Python tool used to compute Cyclomatic Complexity.
|
378
|
-
community: false
|
379
|
-
upgrade_languages:
|
380
|
-
- Python
|
381
|
-
enable_regexps:
|
382
|
-
- \.py$
|
383
|
-
default_ratings_paths:
|
384
|
-
- "**.py"
|
385
151
|
reek:
|
386
152
|
channels:
|
387
153
|
stable: codeclimate/codeclimate-reek
|
388
154
|
description: "Reek examines Ruby classes, modules, and methods and reports any code smells it finds."
|
389
|
-
community: true
|
390
|
-
upgrade_languages:
|
391
|
-
- Ruby
|
392
|
-
enable_regexps:
|
393
|
-
- \.rb$
|
394
|
-
default_ratings_paths:
|
395
|
-
- "**.rb"
|
396
155
|
requiresafe:
|
397
156
|
channels:
|
398
157
|
stable: codeclimate/codeclimate-nodesecurity
|
399
158
|
description: Security tool for Node.js dependencies.
|
400
|
-
community: true
|
401
|
-
enable_regexps:
|
402
|
-
default_ratings_paths:
|
403
159
|
rubocop:
|
404
160
|
channels:
|
405
161
|
stable: codeclimate/codeclimate-rubocop
|
@@ -411,112 +167,65 @@ rubocop:
|
|
411
167
|
rubocop-0-50: codeclimate/codeclimate-rubocop:rubocop-0-50
|
412
168
|
rubocop-0-51: codeclimate/codeclimate-rubocop:rubocop-0-51
|
413
169
|
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
414
|
-
community: false
|
415
|
-
upgrade_languages:
|
416
|
-
- Ruby
|
417
|
-
enable_regexps:
|
418
|
-
- \.rb$
|
419
|
-
default_ratings_paths:
|
420
|
-
- "**.rb"
|
421
170
|
rubocop-v35:
|
422
171
|
channels:
|
423
172
|
stable: codeclimate/codeclimate-rubocop:v35
|
424
|
-
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
425
|
-
community: false
|
426
|
-
enable_regexps:
|
427
|
-
default_ratings_paths:
|
428
|
-
- "**.rb"
|
173
|
+
description: A Ruby static code analyzer, based on the community Ruby style guide.
|
429
174
|
rubymotion:
|
430
175
|
channels:
|
431
176
|
stable: codeclimate/codeclimate-rubymotion
|
432
177
|
description: Rubymotion-specific rubocop checks.
|
433
|
-
community: true
|
434
|
-
enable_regexps:
|
435
|
-
default_ratings_paths:
|
436
|
-
- "**.rb"
|
437
178
|
rustfmt:
|
438
179
|
channels:
|
439
180
|
beta: codeclimate/codeclimate-rustfmt:beta
|
440
181
|
description: A tool for formatting Rust code according to style guidelines.
|
441
|
-
community: true
|
442
|
-
enable_regexps:
|
443
|
-
- \.rs$
|
444
|
-
default_ratings_paths:
|
445
|
-
- "**.rs"
|
446
182
|
scss-lint:
|
447
183
|
channels:
|
448
184
|
stable: codeclimate/codeclimate-scss-lint
|
449
|
-
description:
|
450
|
-
community: true
|
451
|
-
enable_regexps:
|
452
|
-
default_ratings_paths:
|
453
|
-
- "**.scss"
|
185
|
+
description: A configurable tool for writing clean and consistent SCSS.
|
454
186
|
shellcheck:
|
455
187
|
channels:
|
456
188
|
stable: codeclimate/codeclimate-shellcheck
|
457
189
|
description: A static analysis tool for shell scripts.
|
458
|
-
community: true
|
459
|
-
enable_regexps:
|
460
|
-
- \.sh$
|
461
|
-
default_ratings_paths:
|
462
|
-
- "**.sh"
|
463
190
|
sonar-java:
|
464
191
|
channels:
|
465
192
|
stable: codeclimate/codeclimate-sonar-java
|
466
193
|
beta: codeclimate/codeclimate-sonar-java:beta
|
467
|
-
description:
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
194
|
+
description: Over 400 checks for bugs, vulnerabilities, and code smells in Java code.
|
195
|
+
minimum_memory_limit: 2_048_000_000
|
196
|
+
sonar-php:
|
197
|
+
channels:
|
198
|
+
stable: codeclimate/codeclimate-sonar-php
|
199
|
+
description: SonarLint for PHP.
|
200
|
+
minimum_memory_limit: 2_048_000_000
|
201
|
+
sonar-python:
|
202
|
+
channels:
|
203
|
+
stable: codeclimate/codeclimate-sonar-python
|
204
|
+
description: SonarLint for Python.
|
205
|
+
minimum_memory_limit: 2_048_000_000
|
206
|
+
structure:
|
207
|
+
channels:
|
208
|
+
beta: codeclimate/codeclimate-structure:beta
|
209
|
+
stable: codeclimate/codeclimate-structure
|
210
|
+
description: Performs structural checks on code.
|
474
211
|
stylelint:
|
475
212
|
channels:
|
476
213
|
beta: codeclimate/codeclimate-stylelint:beta
|
477
214
|
stable: codeclimate/codeclimate-stylelint
|
478
|
-
description: A mighty, modern CSS linter
|
479
|
-
community: true
|
480
|
-
enable_regexps:
|
481
|
-
- \.less$
|
482
|
-
- \.scss$
|
483
|
-
- \.sss$
|
484
|
-
default_ratings_paths:
|
485
|
-
- "**.less"
|
486
|
-
- "**.scss"
|
487
|
-
- "**.sss"
|
215
|
+
description: A mighty, modern CSS linter.
|
488
216
|
tailor:
|
489
217
|
channels:
|
490
218
|
stable: codeclimate/codeclimate-tailor
|
491
219
|
description: Cross-platform static analyzer and linter for Swift.
|
492
|
-
community: true
|
493
|
-
enable_regexps:
|
494
|
-
- \.swift$
|
495
|
-
default_ratings_paths:
|
496
|
-
- "**.swift"
|
497
220
|
tslint:
|
498
221
|
channels:
|
499
|
-
|
222
|
+
stable: codeclimate/codeclimate-tslint
|
500
223
|
description: An extensible linter for the TypeScript language
|
501
|
-
community: true
|
502
|
-
enable_regexps:
|
503
|
-
- \.ts$
|
504
|
-
default_ratings_paths:
|
505
|
-
- "**.ts"
|
506
224
|
watson:
|
507
225
|
channels:
|
508
226
|
stable: codeclimate/codeclimate-watson
|
509
227
|
description: A young Ember Doctor to help you fix your code.
|
510
|
-
community: true
|
511
|
-
enable_regexps:
|
512
|
-
default_ratings_paths:
|
513
|
-
- "app/**"
|
514
228
|
vint:
|
515
229
|
channels:
|
516
230
|
stable: codeclimate/codeclimate-vint
|
517
231
|
description: Fast and Highly Extensible Vim script Language Lint implemented by Python.
|
518
|
-
community: true
|
519
|
-
enable_regexps:
|
520
|
-
- \.vim$
|
521
|
-
default_ratings_paths:
|
522
|
-
- "**.vim"
|