flutter_rb 1.0.2 → 1.2.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.
@@ -1,125 +1,158 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'check'
2
4
  require_relative '../report/check_report'
3
5
 
4
6
  module FlutterRb
5
- # Base class for all info parameters in Flutter plugin podspec file
7
+ # This class represents a check for Flutter plugin's podspec file.
8
+ # It is an abstract class and should be subclassed to perform specific checks.
6
9
  class PluginPodspecCheck < Check
7
- # @return {String}
10
+ # Returns the name of the check.
11
+ # The name is constructed by appending the capitalized podspec_parameter to "PluginPodspecCheck".
12
+ #
13
+ # @return [String] the name of the check
8
14
  def name
9
15
  "PluginPodspec#{podspec_parameter.capitalize}Check"
10
16
  end
11
17
 
12
- # @return {String}
18
+ # Returns the parameter for which the check is performed in the podspec file.
19
+ # This method should be implemented in subclasses to specify the specific parameter.
20
+ #
21
+ # @raise [RuntimeError] if the method is not implemented in a subclass
22
+ # @return [String] the parameter for which the check is performed
13
23
  def podspec_parameter
14
- UNIMPLEMENTED_ERROR
24
+ raise UNIMPLEMENTED_ERROR
15
25
  end
16
26
 
17
- # @return {String}
18
- def summary
27
+ # Returns the description of the check.
28
+ # The description explains the purpose of the check,
29
+ # which is to validate a specific parameter in the Flutter plugin's podspec file.
30
+ #
31
+ # @return [String] the description of the check
32
+ def description
19
33
  "Validate Flutter plugin's #{podspec_parameter} in podspec file"
20
34
  end
21
35
  end
22
36
 
23
- # Check Flutter plugin name in podspec file. Exists or not
37
+ # This class represents a check for Flutter plugin's name in the podspec file.
38
+ # It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
24
39
  class PluginPodspecNameCheck < PluginPodspecCheck
25
- # @return {String}
40
+ # Returns the parameter for which the check is performed in the podspec file.
41
+ # In this case, it returns 'name'.
42
+ #
43
+ # @return [String] the parameter for which the check is performed
26
44
  def podspec_parameter
27
45
  'name'
28
46
  end
29
47
 
30
- # @return {String}
31
- def description
32
- 'Check plugin name in podspec file'
33
- end
34
-
35
- # @param {Project} project
36
- # @return {CheckReport}
48
+ # Performs the check for the plugin's name in the podspec file.
49
+ # It compares the name in the pubspec file with the name in the podspec file.
50
+ # If they match, it returns a CheckReport with a normal status.
51
+ # If they do not match, it returns a CheckReport with a warning status.
52
+ #
53
+ # @param project [Project] the project for which the check is performed
54
+ # @return [CheckReport] the report of the check
37
55
  def check(project)
38
56
  name_in_pubspec = project.pubspec.pubspec_info.name
39
57
  podspec = project.ios_folder.podspec
40
58
  name_in_podspec = podspec.name
59
+
41
60
  CheckReport.new(
42
61
  name,
43
- name_in_pubspec == name_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
62
+ name_in_pubspec == name_in_podspec ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::WARNING,
44
63
  description,
45
64
  podspec.path
46
65
  )
47
66
  end
48
67
  end
49
68
 
50
- # Check Flutter plugin version in podspec file. Exists or not
69
+ # This class represents a check for Flutter plugin's version in the podspec file.
70
+ # It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
51
71
  class PluginPodspecVersionCheck < PluginPodspecCheck
52
- # @return {String}
72
+ # Returns the parameter for which the check is performed in the podspec file.
73
+ # In this case, it returns 'version'.
74
+ #
75
+ # @return [String] the parameter for which the check is performed
53
76
  def podspec_parameter
54
77
  'version'
55
78
  end
56
79
 
57
- # @return {String}
58
- def description
59
- 'Check plugin version in podspec file'
60
- end
61
-
62
- # @param {Project} project
63
- # @return {CheckReport}
80
+ # Performs the check for the plugin's version in the podspec file.
81
+ # It compares the version in the pubspec file with the version in the podspec file.
82
+ # If they match, it returns a CheckReport with a normal status.
83
+ # If they do not match, it returns a CheckReport with a warning status.
84
+ #
85
+ # @param project [Project] the project for which the check is performed
86
+ # @return [CheckReport] the report of the check
64
87
  def check(project)
65
88
  version_in_pubspec = project.pubspec.pubspec_info.version
66
89
  podspec = project.ios_folder.podspec
67
90
  version_in_podspec = podspec.version
91
+
68
92
  CheckReport.new(
69
93
  name,
70
- version_in_pubspec == version_in_podspec ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
94
+ version_in_pubspec == version_in_podspec ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::WARNING,
71
95
  description,
72
96
  podspec.path
73
97
  )
74
98
  end
75
99
  end
76
100
 
77
- # Check Flutter plugin's authors. Exists or not
101
+ # This class represents a check for Flutter plugin's authors in the podspec file.
102
+ # It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
78
103
  class PluginPodspecAuthorsCheck < PluginPodspecCheck
79
- # @return {String}
104
+ # Returns the parameter for which the check is performed in the podspec file.
105
+ # In this case, it returns 'authors'.
106
+ #
107
+ # @return [String] the parameter for which the check is performed
80
108
  def podspec_parameter
81
109
  'authors'
82
110
  end
83
111
 
84
- # @return {String}
85
- def description
86
- "Check plugin's authors in podspec file"
87
- end
88
-
89
- # @param {Project} project
90
- # @return {CheckReport}
112
+ # Performs the check for the plugin's authors in the podspec file.
113
+ # It checks if the 'authors' parameter is present in the podspec file.
114
+ # If it is present, it returns a CheckReport with a normal status.
115
+ # If it is not present, it returns a CheckReport with an error status.
116
+ #
117
+ # @param project [Project] the project for which the check is performed
118
+ # @return [CheckReport] the report of the check
91
119
  def check(project)
92
120
  podspec = project.ios_folder.podspec
93
121
  author_exists = !podspec.authors.nil?
122
+
94
123
  CheckReport.new(
95
124
  name,
96
- author_exists ? CheckReportStatus::NORMAL : CheckReportStatus::ERROR,
125
+ author_exists ? ::CheckReportStatus::NORMAL : ::CheckReportStatus::ERROR,
97
126
  description,
98
127
  podspec.path
99
128
  )
100
129
  end
101
130
  end
102
131
 
103
- # Check plugin iOS source path in podspec file.
104
- # If Flutter plugin cannot contains iOS specific code, source path must be '.'
132
+ # This class represents a check for Flutter plugin's source in the podspec file.
133
+ # It is a subclass of PluginPodspecCheck and overrides the necessary methods to perform the specific check.
105
134
  class PluginPodspecSourceCheck < PluginPodspecCheck
106
- # @return {String}
135
+ # Returns the parameter for which the check is performed in the podspec file.
136
+ # In this case, it returns 'source'.
137
+ #
138
+ # @return [String] the parameter for which the check is performed
107
139
  def podspec_parameter
108
140
  'source'
109
141
  end
110
142
 
111
- # @return {String}
112
- def description
113
- 'Check plugin iOS source path in podspec file'
114
- end
115
-
116
- # @param {Project} project
117
- # @return {CheckReport}
143
+ # Performs the check for the plugin's source in the podspec file.
144
+ # It checks if the 'source' parameter is present in the podspec file.
145
+ # If it is present, it returns a CheckReport with a normal status.
146
+ # If it is not present, it returns a CheckReport with an error status.
147
+ #
148
+ # @param project [Project] the project for which the check is performed
149
+ # @return [CheckReport] the report of the check
118
150
  def check(project)
119
151
  podspec = project.ios_folder.podspec
152
+
120
153
  CheckReport.new(
121
154
  name,
122
- podspec.source.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
155
+ podspec.source.nil? ? ::CheckReportStatus::ERROR : ::CheckReportStatus::NORMAL,
123
156
  description,
124
157
  podspec.path
125
158
  )
@@ -1,41 +1,57 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'check'
2
4
  require_relative '../report/check_report'
3
5
 
4
6
  module FlutterRb
5
- # Base class for all info parameters in Flutter plugin pubspec.yaml file
7
+ # This class represents a check for Flutter plugin's pubspec.yaml file.
8
+ # It is an abstract class and should be subclassed to perform specific checks.
6
9
  class PluginPubspecCheck < Check
7
- # @return {String}
10
+ # Returns the name of the check.
11
+ # The name is constructed by appending the capitalized pubspec_parameter to "PluginPubspecCheck".
12
+ #
13
+ # @return [String] the name of the check
8
14
  def name
9
15
  "PluginPubspec#{pubspec_parameter.capitalize}Check"
10
16
  end
11
17
 
12
- # @return {String}
18
+ # Returns the parameter to be checked in the pubspec.yaml file.
19
+ # This method should be implemented in subclasses to specify the specific parameter to be checked.
20
+ #
21
+ # @raise [NotImplementedError] if not implemented in subclasses
22
+ # @return [String] the parameter to be checked
13
23
  def pubspec_parameter
14
24
  raise UNIMPLEMENTED_ERROR
15
25
  end
16
26
 
17
- # @return {String}
18
- def summary
27
+ # Returns the description of the check.
28
+ # The description explains what the check is validating.
29
+ #
30
+ # @return [String] the description of the check
31
+ def description
19
32
  "Validate Flutter plugin's #{pubspec_parameter} in pubspec.yaml"
20
33
  end
21
34
  end
22
35
 
23
- # Check Flutter plugin name in podspec file. Exists or not
36
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'name' parameter.
37
+ # It inherits from PluginPubspecCheck class.
24
38
  class PluginPubspecNameCheck < PluginPubspecCheck
25
- # @return {String}
39
+ # Returns the parameter to be checked in the pubspec.yaml file.
40
+ # In this case, it returns 'name'.
41
+ #
42
+ # @return [String] the parameter to be checked
26
43
  def pubspec_parameter
27
44
  'name'
28
45
  end
29
46
 
30
- # @return {String}
31
- def description
32
- 'Check plugin name in pubspec file'
33
- end
34
-
35
- # @param {Project} project
36
- # @return {CheckReport}
47
+ # Performs the check for the 'name' parameter in the pubspec.yaml file.
48
+ # It creates a CheckReport object with the result of the check.
49
+ #
50
+ # @param project [Project] the project to be checked
51
+ # @return [CheckReport] the report of the check result
37
52
  def check(project)
38
53
  pubspec = project.pubspec
54
+
39
55
  CheckReport.new(
40
56
  name,
41
57
  pubspec.pubspec_info.name.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
@@ -45,22 +61,25 @@ module FlutterRb
45
61
  end
46
62
  end
47
63
 
48
- # Check Flutter plugin description in pubspec file. Exists or not
64
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'description' parameter.
65
+ # It inherits from PluginPubspecCheck class.
49
66
  class PluginPubspecDescriptionCheck < PluginPubspecCheck
50
- # @return {String}
67
+ # Returns the parameter to be checked in the pubspec.yaml file.
68
+ # In this case, it returns 'description'.
69
+ #
70
+ # @return [String] the parameter to be checked
51
71
  def pubspec_parameter
52
72
  'description'
53
73
  end
54
74
 
55
- # @return {String}
56
- def description
57
- 'Check plugin description in pubspec file'
58
- end
59
-
60
- # @param {Project} project
61
- # @return {CheckReport}
75
+ # Performs the check for the 'description' parameter in the pubspec.yaml file.
76
+ # It creates a CheckReport object with the result of the check.
77
+ #
78
+ # @param project [Project] the project to be checked
79
+ # @return [CheckReport] the report of the check result
62
80
  def check(project)
63
81
  pubspec = project.pubspec
82
+
64
83
  CheckReport.new(
65
84
  name,
66
85
  pubspec.pubspec_info.description.nil? ? CheckReportStatus::WARNING : CheckReportStatus::NORMAL,
@@ -70,22 +89,25 @@ module FlutterRb
70
89
  end
71
90
  end
72
91
 
73
- # Check Flutter plugin version in pubspec file. Exists or not
92
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'version' parameter.
93
+ # It inherits from PluginPubspecCheck class.
74
94
  class PluginPubspecVersionCheck < PluginPubspecCheck
75
- # @return {String}
95
+ # Returns the parameter to be checked in the pubspec.yaml file.
96
+ # In this case, it returns 'version'.
97
+ #
98
+ # @return [String] the parameter to be checked
76
99
  def pubspec_parameter
77
100
  'version'
78
101
  end
79
102
 
80
- # @return {String}
81
- def description
82
- 'Check plugin version in pubspec'
83
- end
84
-
85
- # @param {Project} project
86
- # @return {CheckReport}
103
+ # Performs the check for the 'version' parameter in the pubspec.yaml file.
104
+ # It creates a CheckReport object with the result of the check.
105
+ #
106
+ # @param project [Project] the project to be checked
107
+ # @return [CheckReport] the report of the check result
87
108
  def check(project)
88
109
  pubspec = project.pubspec
110
+
89
111
  CheckReport.new(
90
112
  name,
91
113
  pubspec.pubspec_info.version.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
@@ -95,22 +117,25 @@ module FlutterRb
95
117
  end
96
118
  end
97
119
 
98
- # Check Flutter plugin author in pubspec file. Exists or not
120
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'author' parameter.
121
+ # It inherits from PluginPubspecCheck class.
99
122
  class PluginPubspecAuthorCheck < PluginPubspecCheck
100
- # @return {String}
123
+ # Returns the parameter to be checked in the pubspec.yaml file.
124
+ # In this case, it returns 'author'.
125
+ #
126
+ # @return [String] the parameter to be checked
101
127
  def pubspec_parameter
102
128
  'author'
103
129
  end
104
130
 
105
- # @return {String}
106
- def description
107
- 'Check plugin author in pubspec'
108
- end
109
-
110
- # @param {Project} project
111
- # @return {CheckReport}
131
+ # Performs the check for the 'author' parameter in the pubspec.yaml file.
132
+ # It creates a CheckReport object with the result of the check.
133
+ #
134
+ # @param project [Project] the project to be checked
135
+ # @return [CheckReport] the report of the check result
112
136
  def check(project)
113
137
  pubspec = project.pubspec
138
+
114
139
  CheckReport.new(
115
140
  name,
116
141
  pubspec.pubspec_info.author.nil? ? CheckReportStatus::NORMAL : CheckReportStatus::WARNING,
@@ -120,22 +145,25 @@ module FlutterRb
120
145
  end
121
146
  end
122
147
 
123
- # Check Flutter plugin homepage in pubspec file. Exists or not
148
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'homepage' parameter.
149
+ # It inherits from PluginPubspecCheck class.
124
150
  class PluginPubspecHomepageCheck < PluginPubspecCheck
125
- # @return {String}
151
+ # Returns the parameter to be checked in the pubspec.yaml file.
152
+ # In this case, it returns 'homepage'.
153
+ #
154
+ # @return [String] the parameter to be checked
126
155
  def pubspec_parameter
127
156
  'homepage'
128
157
  end
129
158
 
130
- # @return {String}
131
- def description
132
- 'Check plugin homepage in pubspec'
133
- end
134
-
135
- # @param {Project} project
136
- # @return {CheckReport}
159
+ # Performs the check for the 'homepage' parameter in the pubspec.yaml file.
160
+ # It creates a CheckReport object with the result of the check.
161
+ #
162
+ # @param project [Project] the project to be checked
163
+ # @return [CheckReport] the report of the check result
137
164
  def check(project)
138
165
  pubspec = project.pubspec
166
+
139
167
  CheckReport.new(
140
168
  name,
141
169
  pubspec.pubspec_info.homepage.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
@@ -145,34 +173,80 @@ module FlutterRb
145
173
  end
146
174
  end
147
175
 
148
- # Check Flutter plugin Effective Dart dependency in pubspec file. Exists or not
149
- # noinspection RubyClassModuleNamingConvention
150
- class PluginPubspecEffectiveDartCheck < Check
151
- # @return {String}
176
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'lints' dependency.
177
+ # It inherits from the Check class.
178
+ class PluginPubspecLintsCheck < Check
179
+ # Returns the name of the check.
180
+ #
181
+ # @return [String] the name of the check
152
182
  def name
153
- 'PluginPubspecEffectiveDartCheck'
183
+ 'PluginPubspecLintsCheck'
154
184
  end
155
185
 
156
- # @return {String}
157
- def summary
158
- 'Validate Flutter plugin\'s Effective Dart rules implementation in pubspec.yaml'
186
+ # Returns the description of the check.
187
+ # The description explains what the check is validating.
188
+ #
189
+ # @return [String] the description of the check
190
+ def description
191
+ 'Check Flutter plugin lints dependency in pubspec file'
159
192
  end
160
193
 
161
- # @return {String}
194
+ # Performs the check for the 'lints' dependency in the pubspec.yaml file.
195
+ # It creates a CheckReport object with the result of the check.
196
+ #
197
+ # @param project [Project] the project to be checked
198
+ # @return [CheckReport] the report of the check result
199
+ def check(project)
200
+ pubspec = project.pubspec
201
+ # Detects if 'lints' is a dependency in the pubspec file
202
+ lints = pubspec.dev_dependencies&.detect do |dev_dependency|
203
+ dev_dependency.name == 'lints'
204
+ end
205
+
206
+ # Creates a CheckReport object with the result of the check
207
+ CheckReport.new(
208
+ name,
209
+ lints.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
210
+ description,
211
+ pubspec.path
212
+ )
213
+ end
214
+ end
215
+
216
+ # This class represents a check for Flutter plugin's pubspec.yaml file for 'flutter_lints' dependency.
217
+ # It inherits from the Check class.
218
+ class PluginPubspecFlutterLintsCheck < Check
219
+ # Returns the name of the check.
220
+ #
221
+ # @return [String] the name of the check
222
+ def name
223
+ 'PluginPubspecFlutterLintsCheck'
224
+ end
225
+
226
+ # Returns the description of the check.
227
+ # The description explains what the check is validating.
228
+ #
229
+ # @return [String] the description of the check
162
230
  def description
163
- 'Check Flutter plugin Effective Dart depencency in pubspec file'
231
+ 'Check Flutter plugin flutter_lints dependency in pubspec file'
164
232
  end
165
233
 
166
- # @param {Project} project
167
- # @return {CheckReport}
234
+ # Performs the check for the 'flutter_lints' dependency in the pubspec.yaml file.
235
+ # It creates a CheckReport object with the result of the check.
236
+ #
237
+ # @param project [Project] the project to be checked
238
+ # @return [CheckReport] the report of the check result
168
239
  def check(project)
169
240
  pubspec = project.pubspec
170
- effective_dart = pubspec.dev_dependencies&.detect do |dev_dependency|
171
- dev_dependency.name == 'effective_dart'
241
+ # Detects if 'flutter_lints' is a dependency in the pubspec file
242
+ flutter_lints = pubspec.dev_dependencies&.detect do |dev_dependency|
243
+ dev_dependency.name == 'flutter_lints'
172
244
  end
245
+
246
+ # Creates a CheckReport object with the result of the check
173
247
  CheckReport.new(
174
248
  name,
175
- effective_dart.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
249
+ flutter_lints.nil? ? CheckReportStatus::ERROR : CheckReportStatus::NORMAL,
176
250
  description,
177
251
  pubspec.path
178
252
  )
@@ -1,15 +1,27 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FlutterRb
2
- # FlutterRb configuration representation from config in Flutter plugin
4
+ # This class represents the configuration for FlutterRb checks.
5
+ # It holds arrays of checks for Flutter, Android, and iOS platforms.
3
6
  class FlutterRbConfig
4
- # @param {Check[]} flutter_checks
5
- # @param {Check[]} android_checks
6
- # @param {Check[]} ios_checks
7
+ # Initializes a new instance of FlutterRbConfig.
8
+ #
9
+ # @param flutter_checks [Array<Check>] An array of Flutter checks.
10
+ # @param android_checks [Array<Check>] An array of Android checks.
11
+ # @param ios_checks [Array<Check>] An array of iOS checks.
7
12
  def initialize(flutter_checks, android_checks, ios_checks)
8
13
  @flutter_checks = flutter_checks
9
14
  @android_checks = android_checks
10
15
  @ios_checks = ios_checks
11
16
  end
12
17
 
13
- attr_accessor :flutter_checks, :android_checks, :ios_checks
18
+ # Provides read and write access to the flutter_checks attribute.
19
+ attr_accessor :flutter_checks
20
+
21
+ # Provides read and write access to the android_checks attribute.
22
+ attr_accessor :android_checks
23
+
24
+ # Provides read and write access to the ios_checks attribute.
25
+ attr_accessor :ios_checks
14
26
  end
15
27
  end
@@ -1,11 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './flutter_rb_config'
2
4
  require_relative '../checks/plugin_directories_check'
3
5
 
4
6
  require 'yaml'
5
7
 
6
8
  module FlutterRb
7
- # Class that initialize configuration
9
+ # This class is responsible for initializing a FlutterRbConfig object.
8
10
  class FlutterRbConfigInitializer
11
+ # An array of Flutter checks to be performed.
9
12
  FLUTTER_CHECKS = [
10
13
  PluginDirectoriesCheck.new,
11
14
  PluginPubspecNameCheck.new,
@@ -13,14 +16,17 @@ module FlutterRb
13
16
  PluginPubspecVersionCheck.new,
14
17
  PluginPubspecAuthorCheck.new,
15
18
  PluginPubspecHomepageCheck.new,
16
- PluginPubspecEffectiveDartCheck.new
19
+ PluginPubspecLintsCheck.new,
20
+ PluginPubspecFlutterLintsCheck.new
17
21
  ].freeze
18
22
 
23
+ # An array of Android checks to be performed.
19
24
  ANDROID_CHECKS = [
20
25
  PluginGradleAndroidPackageCheck.new,
21
26
  PluginGradleVersionCheck.new
22
27
  ].freeze
23
28
 
29
+ # An array of iOS checks to be performed.
24
30
  IOS_CHECKS = [
25
31
  PluginPodspecNameCheck.new,
26
32
  PluginPodspecVersionCheck.new,
@@ -28,38 +34,43 @@ module FlutterRb
28
34
  PluginPodspecSourceCheck.new
29
35
  ].freeze
30
36
 
31
- # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
32
- # @param {String} path
37
+ # Parses a YAML configuration file and initializes a FlutterRbConfig object.
38
+ #
39
+ # @param path [String] The path to the YAML configuration file.
40
+ # @return [FlutterRbConfig] A FlutterRbConfig object initialized with the parsed configuration.
33
41
  def parse(path)
34
- config = YAML.load_file(path)['include']
35
- flutter_checks = []
36
- unless config['flutter'].nil?
37
- flutter_checks += config['flutter'].map do |check|
38
- Object.const_get("FlutterRb::#{check}").new
42
+ config = YAML.load_file(path)
43
+
44
+ exclude_flutter_checks = ::Set.new
45
+ exclude_android_checks = ::Set.new
46
+ exclude_ios_checks = ::Set.new
47
+
48
+ unless config.nil?
49
+ exclude_checks = YAML.load_file(path)['exclude']
50
+
51
+ unless exclude_checks['flutter'].nil?
52
+ exclude_flutter_checks += exclude_checks['flutter'].map { |check| "FlutterRb::#{check}" }
39
53
  end
40
- end
41
- android_checks = []
42
- unless config['android'].nil?
43
- android_checks += config['android'].map do |check|
44
- Object.const_get("FlutterRb::#{check}").new
54
+
55
+ unless exclude_checks['android'].nil?
56
+ exclude_android_checks += exclude_checks['android'].map { |check| "FlutterRb::#{check}" }
45
57
  end
46
- end
47
- ios_checks = []
48
- unless config['ios'].nil?
49
- ios_checks += config['ios'].map do |check|
50
- Object.const_get("FlutterRb::#{check}").new
58
+
59
+ unless exclude_checks['ios'].nil?
60
+ exclude_ios_checks += exclude_checks['ios'].map { |check| "FlutterRb::#{check}" }
51
61
  end
52
62
  end
63
+
53
64
  FlutterRbConfig.new(
54
- flutter_checks.empty? ? FLUTTER_CHECKS : flutter_checks,
55
- android_checks.empty? ? ANDROID_CHECKS : android_checks,
56
- ios_checks.empty? ? IOS_CHECKS : ios_checks
65
+ FLUTTER_CHECKS.reject { |check| exclude_flutter_checks&.include?(check.class.name) },
66
+ ANDROID_CHECKS.reject { |check| exclude_android_checks&.include?(check.class.name) },
67
+ IOS_CHECKS.reject { |check| exclude_ios_checks&.include?(check.class.name) }
57
68
  )
58
69
  end
59
70
 
60
- # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/PerceivedComplexity
61
-
62
- # @return {FlutterRbConfig}
71
+ # Initializes a FlutterRbConfig object with the default checks.
72
+ #
73
+ # @return [FlutterRbConfig] A FlutterRbConfig object initialized with the default checks.
63
74
  def default
64
75
  FlutterRbConfig.new(
65
76
  FLUTTER_CHECKS,