Commit 5ac000b

mo <mo.khan@gmail.com>
2018-03-03 18:52:36
generate rubocop todo list.
1 parent e74fa91
.rubocop.yml
@@ -1,3 +1,5 @@
+inherit_from: .rubocop_todo.yml
+
 require:
   - rubocop/cop/internal_affairs
   - rubocop-rspec
.rubocop_todo.yml
@@ -0,0 +1,42 @@
+# This configuration was generated by
+# `rubocop --auto-gen-config`
+# on 2018-03-03 11:50:08 -0700 using RuboCop version 0.52.1.
+# The point is for the user to remove these configuration records
+# one by one as the offenses are removed from the code base.
+# Note that changes in the inspected code, or installation of new
+# versions of RuboCop, may require this file to be generated again.
+
+# Offense count: 2
+Metrics/AbcSize:
+  Max: 18
+
+# Offense count: 2
+# Configuration parameters: CountComments.
+Metrics/MethodLength:
+  Max: 14
+
+# Offense count: 10
+# Configuration parameters: CustomTransform, IgnoreMethods.
+RSpec/FilePath:
+  Exclude:
+    - 'spec/xml/certificate_spec.rb'
+    - 'spec/xml/crypto/oaep_cipher_spec.rb'
+    - 'spec/xml/crypto/rsa_cipher_spec.rb'
+    - 'spec/xml/crypto/symmetric_cipher_spec.rb'
+    - 'spec/xml/decryption_spec.rb'
+    - 'spec/xml/document_spec.rb'
+    - 'spec/xml/encryption_spec.rb'
+    - 'spec/xml/fingerprint_spec.rb'
+    - 'spec/xml/signatures_spec.rb'
+    - 'spec/xml/templatable_spec.rb'
+
+# Offense count: 1
+Style/DoubleNegation:
+  Exclude:
+    - 'lib/xml/kit/certificate.rb'
+
+# Offense count: 29
+# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
+# URISchemes: http, https
+Metrics/LineLength:
+  Max: 141