File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
lib/cfa_security_controls/hyperproof/proofs/aws Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ require :
2+ - rubocop-yard
3+
14plugins :
5+ - rubocop-md
26 - rubocop-performance
37 - rubocop-rake
48 - rubocop-rspec
9+ - rubocop-thread_safety
510
611AllCops :
712 NewCops : enable
@@ -18,7 +23,8 @@ Metrics/MethodLength:
1823# consistent with the gem name.
1924Naming/FileName :
2025 Exclude :
21- - ' lib/cfa-security-controls-hyperproof.rb'
26+ - lib/cfa-security-controls-hyperproof.rb
27+ - README.md
2228
2329RSpec/ExampleLength :
2430 CountAsOne :
Original file line number Diff line number Diff line change 77group :development do
88 gem 'rake' , '~> 13.2'
99 gem 'rubocop' , '~> 1.75'
10+ gem 'rubocop-md' , '~> 2.0'
1011 gem 'rubocop-performance' , '~> 1.25'
1112 gem 'rubocop-rake' , '~> 0.7'
1213 gem 'rubocop-rspec' , '~> 3.6'
14+ gem 'rubocop-thread_safety' , '~> 0.7'
1315 gem 'rubocop-yard' , '~> 0.10'
1416end
1517
Original file line number Diff line number Diff line change 155155 rubocop-ast (1.44.1 )
156156 parser (>= 3.3.7.2 )
157157 prism (~> 1.4 )
158+ rubocop-md (2.0.1 )
159+ lint_roller (~> 1.1 )
160+ rubocop (>= 1.72.1 )
158161 rubocop-performance (1.25.0 )
159162 lint_roller (~> 1.1 )
160163 rubocop (>= 1.75.0 , < 2.0 )
165168 rubocop-rspec (3.6.0 )
166169 lint_roller (~> 1.1 )
167170 rubocop (~> 1.72 , >= 1.72.1 )
171+ rubocop-thread_safety (0.7.2 )
172+ lint_roller (~> 1.1 )
173+ rubocop (~> 1.72 , >= 1.72.1 )
168174 rubocop-yard (0.10.0 )
169175 rubocop (~> 1.21 )
170176 yard
@@ -200,9 +206,11 @@ DEPENDENCIES
200206 rspec (~> 3.13 )
201207 rspec-github (~> 3.0 )
202208 rubocop (~> 1.75 )
209+ rubocop-md (~> 2.0 )
203210 rubocop-performance (~> 1.25 )
204211 rubocop-rake (~> 0.7 )
205212 rubocop-rspec (~> 3.6 )
213+ rubocop-thread_safety (~> 0.7 )
206214 rubocop-yard (~> 0.10 )
207215 simplecov (~> 0.22 )
208216
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def fields
5454
5555 # Mapping of AWS Config field names to the desired output field names.
5656 #
57- # @return [Hash< String, Symbol> ] The mapping of field names.
57+ # @return [Hash{ String => Symbol} ] The mapping of field names.
5858 def field_map
5959 {
6060 'configuration.storageEncrypted' => :storageEncrypted ,
You can’t perform that action at this time.
0 commit comments