@salesforce/cli 2.129.5 → 2.129.6
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.
- package/README.md +110 -31
- package/npm-shrinkwrap.json +199 -219
- package/oclif.lock +234 -242
- package/oclif.manifest.json +11 -2
- package/package.json +6 -6
package/oclif.manifest.json
CHANGED
|
@@ -234,7 +234,8 @@
|
|
|
234
234
|
"Analyze files using the recommended \"retire-js\" rules; target all the files in the folder \"./other-source\" and only the Apex class files (extension .cls) in the folder \"./force-app\":\n<%= config.bin %> <%= command.id %> --rule-selector retire-js:Recommended --target ./other-source --target ./force-app/**/*.cls",
|
|
235
235
|
"Specify a custom configuration file and output the results to the \"results.csv\" file in CSV format; the commands fails if it finds a violation that exceeds the moderate severity level (3):\n<%= config.bin %> <%= command.id %> --config-file ./code-analyzer2.yml --output-file results.csv --severity-threshold 3",
|
|
236
236
|
"Analyze the files using all the \"eslint\" engine rules that have a moderate severity (3) and the recommended \"retire-js\" engine rules with any severity:\n<%= config.bin %> <%= command.id %> --rule-selector eslint:3 --rule-selector retire-js:Recommended",
|
|
237
|
-
"Analyze the files using only the \"getter-return\" rule of the \"eslint\" engine and any rule named \"no-inner-declarations\" from any engine:\n<%= config.bin %> <%= command.id %> --rule-selector eslint:getter-return --rule-selector no-inner-declarations"
|
|
237
|
+
"Analyze the files using only the \"getter-return\" rule of the \"eslint\" engine and any rule named \"no-inner-declarations\" from any engine:\n<%= config.bin %> <%= command.id %> --rule-selector eslint:getter-return --rule-selector no-inner-declarations",
|
|
238
|
+
"Analyze the files and ignore all inline suppression markers (code-analyzer-suppress/unsuppress) in the source code:\n<%= config.bin %> <%= command.id %> --no-suppressions"
|
|
238
239
|
],
|
|
239
240
|
"flags": {
|
|
240
241
|
"flags-dir": {
|
|
@@ -320,6 +321,14 @@
|
|
|
320
321
|
"hasDynamicHelp": false,
|
|
321
322
|
"multiple": false,
|
|
322
323
|
"type": "option"
|
|
324
|
+
},
|
|
325
|
+
"no-suppressions": {
|
|
326
|
+
"description": "By default, Code Analyzer processes inline suppression markers (code-analyzer-suppress and code-analyzer-unsuppress) found in your source code to filter out violations. Use this flag to ignore all suppression markers and report all violations.\n\nNote: If you have a `code-analyzer.yml` or `code-analyzer.yaml` configuration file with the `suppressions.disable_suppressions` field, the configuration file takes precedence over this flag.",
|
|
327
|
+
"name": "no-suppressions",
|
|
328
|
+
"required": false,
|
|
329
|
+
"summary": "Disable processing of inline suppression markers.",
|
|
330
|
+
"allowNo": false,
|
|
331
|
+
"type": "boolean"
|
|
323
332
|
}
|
|
324
333
|
},
|
|
325
334
|
"hasDynamicHelp": false,
|
|
@@ -4426,5 +4435,5 @@
|
|
|
4426
4435
|
"requiresProject": true
|
|
4427
4436
|
}
|
|
4428
4437
|
},
|
|
4429
|
-
"version": "2.129.
|
|
4438
|
+
"version": "2.129.6"
|
|
4430
4439
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.129.
|
|
4
|
+
"version": "2.129.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@salesforce/plugin-user"
|
|
77
77
|
],
|
|
78
78
|
"jitPlugins": {
|
|
79
|
-
"@salesforce/plugin-code-analyzer": "5.
|
|
79
|
+
"@salesforce/plugin-code-analyzer": "5.11.0",
|
|
80
80
|
"@salesforce/plugin-community": "3.3.48",
|
|
81
81
|
"@salesforce/plugin-custom-metadata": "3.3.88",
|
|
82
82
|
"@salesforce/plugin-dev": "2.5.2",
|
|
@@ -167,13 +167,13 @@
|
|
|
167
167
|
"@salesforce/plugin-info": "3.4.114",
|
|
168
168
|
"@salesforce/plugin-limits": "3.3.81",
|
|
169
169
|
"@salesforce/plugin-marketplace": "1.3.10",
|
|
170
|
-
"@salesforce/plugin-org": "5.9.
|
|
170
|
+
"@salesforce/plugin-org": "5.9.75",
|
|
171
171
|
"@salesforce/plugin-packaging": "2.25.12",
|
|
172
172
|
"@salesforce/plugin-schema": "3.3.100",
|
|
173
173
|
"@salesforce/plugin-settings": "2.4.62",
|
|
174
174
|
"@salesforce/plugin-sobject": "1.4.88",
|
|
175
175
|
"@salesforce/plugin-telemetry": "3.8.5",
|
|
176
|
-
"@salesforce/plugin-templates": "56.11.
|
|
176
|
+
"@salesforce/plugin-templates": "56.11.4",
|
|
177
177
|
"@salesforce/plugin-trust": "3.7.114",
|
|
178
178
|
"@salesforce/plugin-user": "3.8.0",
|
|
179
179
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
@@ -257,13 +257,13 @@
|
|
|
257
257
|
"types": "dist/index.d.ts",
|
|
258
258
|
"devDependencies": {
|
|
259
259
|
"@oclif/plugin-command-snapshot": "^5.2.3",
|
|
260
|
-
"@oclif/test": "^4.1.
|
|
260
|
+
"@oclif/test": "^4.1.17",
|
|
261
261
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
262
262
|
"@salesforce/plugin-release-management": "^5.7.0",
|
|
263
263
|
"@salesforce/ts-sinon": "^1.4.31",
|
|
264
264
|
"@salesforce/ts-types": "^2.0.11",
|
|
265
265
|
"aws-sdk": "^2.1693.0",
|
|
266
|
-
"oclif": "^4.22.
|
|
266
|
+
"oclif": "^4.22.96",
|
|
267
267
|
"ts-node": "^10.9.2",
|
|
268
268
|
"typescript": "^5.9.3"
|
|
269
269
|
},
|