fastlane-plugin-lizard 1.3.1 → 1.3.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '069660b3c1baf8f8a11f169b97842fc34d6b47cb8aff88471326d94a4123f1a8'
|
|
4
|
+
data.tar.gz: 61968a56a42aceb539ac461c7d5b476760e6e7a7f8cb76fae48ae9fa13015837
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 241ac7fb303fe436f9ec02581e8aa2cfc938d8967984a8499f2a1996fdf6df19def17b2c7edcb8f85bfcbbcf3abcd1f406c27e81779bb5718201e508f5edd8d7
|
|
7
|
+
data.tar.gz: 7a9d2627eda5b4c58c7038040a5f38750e8ab0066ef14bcc61f5099849ef0a596f46db1eb68b1ffe68cc92b408b8cb0062d87d5aa5b78f8f0f94f22580aab0de
|
|
@@ -114,46 +114,48 @@ module Fastlane
|
|
|
114
114
|
description: "Limit for number of parameters",
|
|
115
115
|
optional: true),
|
|
116
116
|
FastlaneCore::ConfigItem.new(key: :number,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
117
|
+
env_name: "FL_LIZARD_NUMBER",
|
|
118
|
+
description: "If the number of warnings is equal or less than the number, the tool will exit normally, otherwise it will generate error. Useful in makefile for legacy code",
|
|
119
|
+
is_string: false,
|
|
120
|
+
optional: true),
|
|
121
121
|
FastlaneCore::ConfigItem.new(key: :exclude,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
122
|
+
env_name: "FL_LIZARD_EXCLUDE",
|
|
123
|
+
description: "Exclude files that match this pattern. * matches everything, ? matches any single character, \"./folder/*\" exclude everything in the folder recursively. Multiple patterns can be specified. Don't forget to add \"\" around the pattern",
|
|
124
|
+
is_string: true,
|
|
125
|
+
optional: true),
|
|
126
126
|
FastlaneCore::ConfigItem.new(key: :working_threads,
|
|
127
127
|
env_name: "FL_LIZARD_WORKING_THREADS",
|
|
128
128
|
description: "Number of working threads. A bigger number can fully utilize the CPU and faster",
|
|
129
129
|
optional: true,
|
|
130
130
|
is_string: false),
|
|
131
131
|
FastlaneCore::ConfigItem.new(key: :extensions,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
132
|
+
env_name: "FL_LIZARD_EXTENSIONS",
|
|
133
|
+
description: "User the extensions. The available extensions are: -Ecpre: it will ignore code in the #else branch. -Ewordcount: count word frequencies and generate tag cloud. -Eoutside: include the global code as one function",
|
|
134
|
+
is_string: true,
|
|
135
|
+
optional: true),
|
|
136
136
|
FastlaneCore::ConfigItem.new(key: :sorting,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
env_name: "FL_LIZARD_SORTING",
|
|
138
|
+
description: "Sort the warning with field. The field can be nloc, cyclomatic_complexity, token_count, parameter_count, etc. Or an customized file",
|
|
139
|
+
optional: true),
|
|
140
140
|
FastlaneCore::ConfigItem.new(key: :whitelist,
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
141
|
+
env_name: "FL_LIZARD_WHITELIST",
|
|
142
|
+
description: "The path and file name to the whitelist file",
|
|
143
|
+
optional: true),
|
|
144
144
|
FastlaneCore::ConfigItem.new(key: :report_file,
|
|
145
145
|
env_name: "FL_LIZARD_REPORT_FILE",
|
|
146
146
|
description: "The folder/file which lizard output to",
|
|
147
147
|
optional: true),
|
|
148
148
|
FastlaneCore::ConfigItem.new(key: :ignore_exit_status,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
149
|
+
env_name: "FL_LIZARD_IGNORE_EXIT_STATUS",
|
|
150
|
+
description: "Ignore the exit status of the lizard command, so that serious violations don't fail the build (true/false)",
|
|
151
|
+
default_value: false,
|
|
152
|
+
is_string: false,
|
|
153
|
+
optional: true),
|
|
153
154
|
FastlaneCore::ConfigItem.new(key: :executable,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
env_name: "FL_LIZARD_EXECUTABLE",
|
|
156
|
+
description: "Path to the `lizard.py` executable on your machine",
|
|
157
|
+
is_string: true,
|
|
158
|
+
optional: true)
|
|
157
159
|
]
|
|
158
160
|
end
|
|
159
161
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-lizard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Moses Liao
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|