oneapm_rpm 1.1.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.
- checksums.yaml +7 -0
- data/.gitignore +30 -0
- data/.rubocop.yml +725 -0
- data/Gemfile +3 -0
- data/Guardfile +7 -0
- data/LICENSE +1 -0
- data/README.md +3 -0
- data/config/cert/cacert.pem +1177 -0
- data/config/database.yml +5 -0
- data/lib/initializers/goliath.rb +11 -0
- data/lib/initializers/other.rb +1 -0
- data/lib/initializers/rails.rb +15 -0
- data/lib/one_apm/agent.rb +253 -0
- data/lib/one_apm/agent/agent.rb +283 -0
- data/lib/one_apm/agent/agent/connect.rb +175 -0
- data/lib/one_apm/agent/agent/container_data_manager.rb +218 -0
- data/lib/one_apm/agent/agent/forkable_dispatcher_functions.rb +96 -0
- data/lib/one_apm/agent/agent/helpers.rb +45 -0
- data/lib/one_apm/agent/agent/start.rb +226 -0
- data/lib/one_apm/agent/agent/start_worker_thread.rb +148 -0
- data/lib/one_apm/agent/busy_calculator.rb +115 -0
- data/lib/one_apm/agent/cross_app/cross_app_monitor.rb +181 -0
- data/lib/one_apm/agent/cross_app/cross_app_tracing.rb +336 -0
- data/lib/one_apm/agent/database.rb +308 -0
- data/lib/one_apm/agent/database/active_record_helper.rb +80 -0
- data/lib/one_apm/agent/database/obfuscation_helpers.rb +76 -0
- data/lib/one_apm/agent/database/obfuscator.rb +78 -0
- data/lib/one_apm/agent/database/postgres_explain_obfuscator.rb +45 -0
- data/lib/one_apm/agent/datastores.rb +175 -0
- data/lib/one_apm/agent/datastores/metric_helper.rb +83 -0
- data/lib/one_apm/agent/datastores/mongo.rb +27 -0
- data/lib/one_apm/agent/datastores/mongo/metric_translator.rb +189 -0
- data/lib/one_apm/agent/datastores/mongo/obfuscator.rb +37 -0
- data/lib/one_apm/agent/datastores/mongo/statement_formatter.rb +51 -0
- data/lib/one_apm/agent/event/event_listener.rb +40 -0
- data/lib/one_apm/agent/event/event_loop.rb +191 -0
- data/lib/one_apm/agent/event/worker_loop.rb +97 -0
- data/lib/one_apm/agent/harvester.rb +48 -0
- data/lib/one_apm/agent/inbound_request_monitor.rb +30 -0
- data/lib/one_apm/agent/javascript_instrumentor.rb +186 -0
- data/lib/one_apm/agent/pipe/pipe_channel_manager.rb +275 -0
- data/lib/one_apm/agent/pipe/pipe_service.rb +81 -0
- data/lib/one_apm/agent/sampler.rb +55 -0
- data/lib/one_apm/agent/sampler_collection.rb +65 -0
- data/lib/one_apm/agent/samplers/cpu_sampler.rb +49 -0
- data/lib/one_apm/agent/samplers/delayed_job_sampler.rb +109 -0
- data/lib/one_apm/agent/samplers/memory_sampler.rb +144 -0
- data/lib/one_apm/agent/samplers/object_sampler.rb +22 -0
- data/lib/one_apm/agent/samplers/vm_sampler.rb +124 -0
- data/lib/one_apm/agent/synthetics_monitor.rb +48 -0
- data/lib/one_apm/agent/threading/agent_thread.rb +74 -0
- data/lib/one_apm/agent/threading/backtrace_node.rb +133 -0
- data/lib/one_apm/agent/threading/backtrace_service.rb +259 -0
- data/lib/one_apm/agent/threading/thread_profile.rb +155 -0
- data/lib/one_apm/collector/collector/helper.rb +139 -0
- data/lib/one_apm/collector/collector/http_connection.rb +254 -0
- data/lib/one_apm/collector/collector/server_methods.rb +71 -0
- data/lib/one_apm/collector/collector_service.rb +123 -0
- data/lib/one_apm/collector/commands/agent_command.rb +17 -0
- data/lib/one_apm/collector/commands/thread_profiler_session.rb +108 -0
- data/lib/one_apm/collector/commands/xray_session.rb +53 -0
- data/lib/one_apm/collector/commands/xray_session_collection.rb +156 -0
- data/lib/one_apm/collector/containers/agent_command_router.rb +153 -0
- data/lib/one_apm/collector/containers/custom_event_aggregator.rb +94 -0
- data/lib/one_apm/collector/containers/error_collector.rb +349 -0
- data/lib/one_apm/collector/containers/sql_sampler.rb +331 -0
- data/lib/one_apm/collector/containers/stats_engine.rb +34 -0
- data/lib/one_apm/collector/containers/transaction_event_aggregator.rb +249 -0
- data/lib/one_apm/collector/containers/transaction_sampler.rb +352 -0
- data/lib/one_apm/collector/containers/utilization_data.rb +36 -0
- data/lib/one_apm/collector/stats_engine/gc_profiler.rb +106 -0
- data/lib/one_apm/collector/stats_engine/metric_stats.rb +243 -0
- data/lib/one_apm/collector/stats_engine/stats_hash.rb +105 -0
- data/lib/one_apm/configuration.rb +429 -0
- data/lib/one_apm/configuration/autostart.rb +41 -0
- data/lib/one_apm/configuration/default_source.rb +1026 -0
- data/lib/one_apm/configuration/environment_source.rb +113 -0
- data/lib/one_apm/configuration/high_security_source.rb +56 -0
- data/lib/one_apm/configuration/manual_source.rb +13 -0
- data/lib/one_apm/configuration/server_source.rb +60 -0
- data/lib/one_apm/configuration/yaml_source.rb +134 -0
- data/lib/one_apm/errors/agent_errors.rb +26 -0
- data/lib/one_apm/errors/internal_agent_error.rb +16 -0
- data/lib/one_apm/errors/noticed_error.rb +79 -0
- data/lib/one_apm/frameworks/external.rb +15 -0
- data/lib/one_apm/frameworks/rails.rb +103 -0
- data/lib/one_apm/frameworks/rails3.rb +37 -0
- data/lib/one_apm/frameworks/rails4.rb +21 -0
- data/lib/one_apm/frameworks/ruby.rb +21 -0
- data/lib/one_apm/frameworks/sinatra.rb +12 -0
- data/lib/one_apm/inst/3rd/active_merchant.rb +35 -0
- data/lib/one_apm/inst/3rd/acts_as_solr.rb +70 -0
- data/lib/one_apm/inst/3rd/authlogic.rb +23 -0
- data/lib/one_apm/inst/3rd/sunspot.rb +31 -0
- data/lib/one_apm/inst/background_job/active_job.rb +88 -0
- data/lib/one_apm/inst/background_job/delayed_job.rb +52 -0
- data/lib/one_apm/inst/background_job/delayed_job_injection.rb +8 -0
- data/lib/one_apm/inst/background_job/resque.rb +107 -0
- data/lib/one_apm/inst/background_job/sidekiq.rb +64 -0
- data/lib/one_apm/inst/dispatcher/passenger.rb +25 -0
- data/lib/one_apm/inst/dispatcher/rainbows.rb +23 -0
- data/lib/one_apm/inst/framework/grape.rb +94 -0
- data/lib/one_apm/inst/framework/padrino.rb +30 -0
- data/lib/one_apm/inst/framework/sinatra.rb +185 -0
- data/lib/one_apm/inst/framework/sinatra/ignorer.rb +50 -0
- data/lib/one_apm/inst/framework/sinatra/transaction_namer.rb +54 -0
- data/lib/one_apm/inst/http_clients/curb.rb +189 -0
- data/lib/one_apm/inst/http_clients/excon.rb +70 -0
- data/lib/one_apm/inst/http_clients/excon/connection.rb +31 -0
- data/lib/one_apm/inst/http_clients/excon/middleware.rb +55 -0
- data/lib/one_apm/inst/http_clients/httpclient.rb +44 -0
- data/lib/one_apm/inst/http_clients/net.rb +34 -0
- data/lib/one_apm/inst/http_clients/typhoeus.rb +76 -0
- data/lib/one_apm/inst/nosql/memcache.rb +134 -0
- data/lib/one_apm/inst/nosql/mongo.rb +126 -0
- data/lib/one_apm/inst/nosql/mongo_moped.rb +85 -0
- data/lib/one_apm/inst/nosql/redis.rb +83 -0
- data/lib/one_apm/inst/orm/active_record.rb +99 -0
- data/lib/one_apm/inst/orm/active_record_4.rb +28 -0
- data/lib/one_apm/inst/orm/data_mapper.rb +180 -0
- data/lib/one_apm/inst/orm/sequel.rb +47 -0
- data/lib/one_apm/inst/rack.rb +38 -0
- data/lib/one_apm/inst/rack/rack.rb +44 -0
- data/lib/one_apm/inst/rack/rack_builder.rb +51 -0
- data/lib/one_apm/inst/rails/action_controller.rb +118 -0
- data/lib/one_apm/inst/rails/action_web_service.rb +44 -0
- data/lib/one_apm/inst/rails/errors.rb +43 -0
- data/lib/one_apm/inst/rails3/action_controller.rb +172 -0
- data/lib/one_apm/inst/rails3/errors.rb +43 -0
- data/lib/one_apm/inst/rails4/action_controller.rb +27 -0
- data/lib/one_apm/inst/rails4/action_controller_subscriber.rb +121 -0
- data/lib/one_apm/inst/rails4/action_view.rb +23 -0
- data/lib/one_apm/inst/rails4/action_view_subscriber.rb +93 -0
- data/lib/one_apm/inst/rails4/active_record_subscriber.rb +96 -0
- data/lib/one_apm/inst/rails4/errors.rb +42 -0
- data/lib/one_apm/inst/rails_middleware.rb +40 -0
- data/lib/one_apm/inst/support/evented_subscriber.rb +98 -0
- data/lib/one_apm/inst/support/ignore_actions.rb +39 -0
- data/lib/one_apm/inst/support/queue_time.rb +76 -0
- data/lib/one_apm/inst/transaction_base.rb +405 -0
- data/lib/one_apm/logger/agent_logger.rb +206 -0
- data/lib/one_apm/logger/audit_logger.rb +78 -0
- data/lib/one_apm/logger/memory_logger.rb +50 -0
- data/lib/one_apm/logger/null_logger.rb +19 -0
- data/lib/one_apm/metrics/metric_data.rb +72 -0
- data/lib/one_apm/metrics/metric_spec.rb +82 -0
- data/lib/one_apm/metrics/stats.rb +173 -0
- data/lib/one_apm/probe.rb +16 -0
- data/lib/one_apm/probe/framework_loader.rb +53 -0
- data/lib/one_apm/probe/instance_methods.rb +105 -0
- data/lib/one_apm/probe/instrumentation.rb +60 -0
- data/lib/one_apm/rack/browser_monitoring.rb +144 -0
- data/lib/one_apm/rack/middleware_base.rb +27 -0
- data/lib/one_apm/rack/middleware_hooks.rb +17 -0
- data/lib/one_apm/rack/middleware_tracing.rb +81 -0
- data/lib/one_apm/rack/middleware_wrapper.rb +86 -0
- data/lib/one_apm/support/chained_call.rb +15 -0
- data/lib/one_apm/support/coerce.rb +81 -0
- data/lib/one_apm/support/collection_helper.rb +79 -0
- data/lib/one_apm/support/dotted_hash.rb +45 -0
- data/lib/one_apm/support/encoders.rb +34 -0
- data/lib/one_apm/support/environment_report.rb +127 -0
- data/lib/one_apm/support/event_buffer.rb +82 -0
- data/lib/one_apm/support/event_buffer/sampled_buffer.rb +45 -0
- data/lib/one_apm/support/event_buffer/sized_buffer.rb +21 -0
- data/lib/one_apm/support/event_buffer/synthetics_event_buffer.rb +40 -0
- data/lib/one_apm/support/helper.rb +49 -0
- data/lib/one_apm/support/hostname.rb +13 -0
- data/lib/one_apm/support/http_clients/curb_wrappers.rb +65 -0
- data/lib/one_apm/support/http_clients/excon_wrappers.rb +63 -0
- data/lib/one_apm/support/http_clients/httpclient_wrappers.rb +61 -0
- data/lib/one_apm/support/http_clients/net_http_wrappers.rb +48 -0
- data/lib/one_apm/support/http_clients/typhoeus_wrappers.rb +73 -0
- data/lib/one_apm/support/http_clients/uri_util.rb +39 -0
- data/lib/one_apm/support/json_marshaller.rb +68 -0
- data/lib/one_apm/support/json_wrapper.rb +130 -0
- data/lib/one_apm/support/language_support.rb +142 -0
- data/lib/one_apm/support/library_detection.rb +119 -0
- data/lib/one_apm/support/local_environment.rb +196 -0
- data/lib/one_apm/support/marshaller.rb +62 -0
- data/lib/one_apm/support/method_tracer.rb +334 -0
- data/lib/one_apm/support/method_tracer/helpers.rb +92 -0
- data/lib/one_apm/support/method_tracer/traced_method_stack.rb +103 -0
- data/lib/one_apm/support/obfuscator.rb +47 -0
- data/lib/one_apm/support/okjson.rb +601 -0
- data/lib/one_apm/support/parameter_filtering.rb +35 -0
- data/lib/one_apm/support/rules_engine.rb +56 -0
- data/lib/one_apm/support/rules_engine/replacement_rule.rb +80 -0
- data/lib/one_apm/support/rules_engine/segment_terms_rule.rb +46 -0
- data/lib/one_apm/support/server.rb +11 -0
- data/lib/one_apm/support/supported_versions.rb +257 -0
- data/lib/one_apm/support/system_info.rb +211 -0
- data/lib/one_apm/support/timer_lib.rb +29 -0
- data/lib/one_apm/support/version_number.rb +51 -0
- data/lib/one_apm/support/vm.rb +30 -0
- data/lib/one_apm/support/vm/jruby_vm.rb +38 -0
- data/lib/one_apm/support/vm/monotonic_gc_profiler.rb +43 -0
- data/lib/one_apm/support/vm/mri_vm.rb +85 -0
- data/lib/one_apm/support/vm/rubinius_vm.rb +129 -0
- data/lib/one_apm/support/vm/snapshot.rb +18 -0
- data/lib/one_apm/transaction.rb +336 -0
- data/lib/one_apm/transaction/class_methods.rb +132 -0
- data/lib/one_apm/transaction/instance_helpers.rb +82 -0
- data/lib/one_apm/transaction/metric_constants.rb +42 -0
- data/lib/one_apm/transaction/sample_buffer/force_persist_sample_buffer.rb +21 -0
- data/lib/one_apm/transaction/sample_buffer/slowest_sample_buffer.rb +21 -0
- data/lib/one_apm/transaction/sample_buffer/synthetics_sample_buffer.rb +21 -0
- data/lib/one_apm/transaction/sample_buffer/transaction_sample_buffer.rb +101 -0
- data/lib/one_apm/transaction/sample_buffer/xray_sample_buffer.rb +60 -0
- data/lib/one_apm/transaction/segment.rb +193 -0
- data/lib/one_apm/transaction/segment_summary.rb +51 -0
- data/lib/one_apm/transaction/thread_local_access.rb +73 -0
- data/lib/one_apm/transaction/transaction_analysis.rb +78 -0
- data/lib/one_apm/transaction/transaction_apdex.rb +20 -0
- data/lib/one_apm/transaction/transaction_cpu.rb +22 -0
- data/lib/one_apm/transaction/transaction_finish_append.rb +67 -0
- data/lib/one_apm/transaction/transaction_ignore.rb +33 -0
- data/lib/one_apm/transaction/transaction_jruby_functions.rb +40 -0
- data/lib/one_apm/transaction/transaction_metrics.rb +53 -0
- data/lib/one_apm/transaction/transaction_name.rb +90 -0
- data/lib/one_apm/transaction/transaction_namer.rb +49 -0
- data/lib/one_apm/transaction/transaction_sample.rb +204 -0
- data/lib/one_apm/transaction/transaction_sample_builder.rb +168 -0
- data/lib/one_apm/transaction/transaction_state.rb +149 -0
- data/lib/one_apm/transaction/transaction_summary.rb +28 -0
- data/lib/one_apm/transaction/transaction_synthetics.rb +40 -0
- data/lib/one_apm/transaction/transaction_timings.rb +54 -0
- data/lib/one_apm/version.rb +13 -0
- data/lib/oneapm_rpm.rb +16 -0
- data/lib/sequel/extensions/oneapm_instrumentation.rb +84 -0
- data/lib/sequel/plugins/oneapm_instrumentation.rb +66 -0
- data/oneapm.yml +135 -0
- data/oneapm_rpm.gemspec +58 -0
- metadata +474 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6346e8f845d58532b92012e378955bb6b28d5819
|
4
|
+
data.tar.gz: 44236463f7426d56843b3be7629648d1ca675ad0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: abde7b81716fe857213e05fbdfbeb1c4e096a4115b58098d8e9b84c1579ba2048598d9121df1079e71fa68de4f1ec9a7727d18b8c722be4ab0485112a854932a
|
7
|
+
data.tar.gz: b930229a58b1236d039cc0297d9b8586c07957e850c3423bc7cb2f569f740d5bc29f398da310daf0b4e83c0ad568a1bfc53cfcfea76873a865c344a457722789
|
data/.gitignore
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
Gemfile.lock
|
2
|
+
coverage/*
|
3
|
+
test/multiverse/suites/*/coverage/*
|
4
|
+
.DS\_Store
|
5
|
+
*~
|
6
|
+
*.rbc
|
7
|
+
pkg/
|
8
|
+
*.gem
|
9
|
+
!rails
|
10
|
+
Manifest*
|
11
|
+
.idea/
|
12
|
+
tmp/
|
13
|
+
TAGS
|
14
|
+
tags
|
15
|
+
*.swp
|
16
|
+
*.swo
|
17
|
+
|
18
|
+
/log/
|
19
|
+
/lerg/
|
20
|
+
gems/oneapm_rpm.gemspec
|
21
|
+
gems/oneapm_rpm*.tar.gz
|
22
|
+
lib/one_apm/build.rb
|
23
|
+
.pryrc
|
24
|
+
.tm_properties
|
25
|
+
.bundle
|
26
|
+
.yardoc
|
27
|
+
artifacts/
|
28
|
+
test/performance/script/log/
|
29
|
+
/doc/
|
30
|
+
/test/reports/*
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,725 @@
|
|
1
|
+
# This configuration was generated by `rubocop --auto-gen-config`
|
2
|
+
# on 2015-03-11 11:20:27 +0800 using RuboCop version 0.29.1.
|
3
|
+
# The point is for the user to remove these configuration records
|
4
|
+
# one by one as the offenses are removed from the code base.
|
5
|
+
# Note that changes in the inspected code, or installation of new
|
6
|
+
# versions of RuboCop, may require this file to be generated again.
|
7
|
+
|
8
|
+
# Offense count: 21
|
9
|
+
# Configuration parameters: AllowSafeAssignment.
|
10
|
+
Lint/AssignmentInCondition:
|
11
|
+
Enabled: false
|
12
|
+
|
13
|
+
# Offense count: 2
|
14
|
+
# Cop supports --auto-correct.
|
15
|
+
Lint/BlockAlignment:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
# Offense count: 18
|
19
|
+
# Cop supports --auto-correct.
|
20
|
+
Lint/DeprecatedClassMethods:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
# Offense count: 4
|
24
|
+
Lint/DuplicateMethods:
|
25
|
+
Enabled: false
|
26
|
+
|
27
|
+
# Offense count: 12
|
28
|
+
# Configuration parameters: AlignWith, SupportedStyles.
|
29
|
+
Lint/EndAlignment:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
# Offense count: 21
|
33
|
+
Lint/HandleExceptions:
|
34
|
+
Enabled: false
|
35
|
+
|
36
|
+
# Offense count: 4
|
37
|
+
Lint/LiteralInCondition:
|
38
|
+
Enabled: false
|
39
|
+
|
40
|
+
# Offense count: 10
|
41
|
+
Lint/ParenthesesAsGroupedExpression:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
# Offense count: 7
|
45
|
+
Lint/RescueException:
|
46
|
+
Enabled: false
|
47
|
+
|
48
|
+
# Offense count: 1
|
49
|
+
# Cop supports --auto-correct.
|
50
|
+
Lint/SpaceBeforeFirstArg:
|
51
|
+
Enabled: false
|
52
|
+
|
53
|
+
# Offense count: 20
|
54
|
+
# Cop supports --auto-correct.
|
55
|
+
Lint/StringConversionInInterpolation:
|
56
|
+
Enabled: false
|
57
|
+
|
58
|
+
# Offense count: 2
|
59
|
+
Lint/UnderscorePrefixedVariableName:
|
60
|
+
Enabled: false
|
61
|
+
|
62
|
+
# Offense count: 64
|
63
|
+
# Cop supports --auto-correct.
|
64
|
+
Lint/UnusedBlockArgument:
|
65
|
+
Enabled: false
|
66
|
+
|
67
|
+
# Offense count: 141
|
68
|
+
# Cop supports --auto-correct.
|
69
|
+
Lint/UnusedMethodArgument:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
# Offense count: 1
|
73
|
+
Lint/UselessAccessModifier:
|
74
|
+
Enabled: false
|
75
|
+
|
76
|
+
# Offense count: 27
|
77
|
+
Lint/UselessAssignment:
|
78
|
+
Enabled: false
|
79
|
+
|
80
|
+
# Offense count: 1
|
81
|
+
Lint/UselessComparison:
|
82
|
+
Enabled: false
|
83
|
+
|
84
|
+
# Offense count: 1
|
85
|
+
Lint/Void:
|
86
|
+
Enabled: false
|
87
|
+
|
88
|
+
# Offense count: 333
|
89
|
+
Metrics/AbcSize:
|
90
|
+
Max: 78
|
91
|
+
|
92
|
+
# Offense count: 6
|
93
|
+
Metrics/BlockNesting:
|
94
|
+
Max: 6
|
95
|
+
|
96
|
+
# Offense count: 98
|
97
|
+
# Configuration parameters: CountComments.
|
98
|
+
Metrics/ClassLength:
|
99
|
+
Max: 959
|
100
|
+
|
101
|
+
# Offense count: 57
|
102
|
+
Metrics/CyclomaticComplexity:
|
103
|
+
Max: 20
|
104
|
+
|
105
|
+
# Offense count: 2571
|
106
|
+
# Configuration parameters: AllowURI, URISchemes.
|
107
|
+
Metrics/LineLength:
|
108
|
+
Max: 618
|
109
|
+
|
110
|
+
# Offense count: 589
|
111
|
+
# Configuration parameters: CountComments.
|
112
|
+
Metrics/MethodLength:
|
113
|
+
Max: 60
|
114
|
+
|
115
|
+
# Offense count: 8
|
116
|
+
# Configuration parameters: CountKeywordArgs.
|
117
|
+
Metrics/ParameterLists:
|
118
|
+
Max: 7
|
119
|
+
|
120
|
+
# Offense count: 35
|
121
|
+
Metrics/PerceivedComplexity:
|
122
|
+
Max: 20
|
123
|
+
|
124
|
+
# Offense count: 3
|
125
|
+
# Cop supports --auto-correct.
|
126
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
127
|
+
Style/AccessModifierIndentation:
|
128
|
+
Enabled: false
|
129
|
+
|
130
|
+
# Offense count: 29
|
131
|
+
Style/AccessorMethodName:
|
132
|
+
Enabled: false
|
133
|
+
|
134
|
+
# Offense count: 37
|
135
|
+
# Cop supports --auto-correct.
|
136
|
+
Style/Alias:
|
137
|
+
Enabled: false
|
138
|
+
|
139
|
+
# Offense count: 17
|
140
|
+
# Cop supports --auto-correct.
|
141
|
+
Style/AlignArray:
|
142
|
+
Enabled: false
|
143
|
+
|
144
|
+
# Offense count: 32
|
145
|
+
# Cop supports --auto-correct.
|
146
|
+
# Configuration parameters: EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle, SupportedLastArgumentHashStyles.
|
147
|
+
Style/AlignHash:
|
148
|
+
Enabled: false
|
149
|
+
|
150
|
+
# Offense count: 131
|
151
|
+
# Cop supports --auto-correct.
|
152
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
153
|
+
Style/AlignParameters:
|
154
|
+
Enabled: false
|
155
|
+
|
156
|
+
# Offense count: 21
|
157
|
+
# Cop supports --auto-correct.
|
158
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
159
|
+
Style/AndOr:
|
160
|
+
Enabled: false
|
161
|
+
|
162
|
+
# Offense count: 1
|
163
|
+
Style/AsciiComments:
|
164
|
+
Enabled: false
|
165
|
+
|
166
|
+
# Offense count: 16
|
167
|
+
# Cop supports --auto-correct.
|
168
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
169
|
+
Style/BarePercentLiterals:
|
170
|
+
Enabled: false
|
171
|
+
|
172
|
+
# Offense count: 22
|
173
|
+
# Cop supports --auto-correct.
|
174
|
+
Style/Blocks:
|
175
|
+
Enabled: false
|
176
|
+
|
177
|
+
# Offense count: 133
|
178
|
+
# Cop supports --auto-correct.
|
179
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
180
|
+
Style/BracesAroundHashParameters:
|
181
|
+
Enabled: false
|
182
|
+
|
183
|
+
# Offense count: 3
|
184
|
+
Style/CaseEquality:
|
185
|
+
Enabled: false
|
186
|
+
|
187
|
+
# Offense count: 39
|
188
|
+
# Configuration parameters: IndentWhenRelativeTo, SupportedStyles, IndentOneStep.
|
189
|
+
Style/CaseIndentation:
|
190
|
+
Enabled: false
|
191
|
+
|
192
|
+
# Offense count: 54
|
193
|
+
# Cop supports --auto-correct.
|
194
|
+
Style/CharacterLiteral:
|
195
|
+
Enabled: false
|
196
|
+
|
197
|
+
# Offense count: 147
|
198
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
199
|
+
Style/ClassAndModuleChildren:
|
200
|
+
Enabled: false
|
201
|
+
|
202
|
+
# Offense count: 12
|
203
|
+
# Cop supports --auto-correct.
|
204
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
205
|
+
Style/ClassCheck:
|
206
|
+
Enabled: false
|
207
|
+
|
208
|
+
# Offense count: 23
|
209
|
+
Style/ClassVars:
|
210
|
+
Enabled: false
|
211
|
+
|
212
|
+
# Offense count: 6
|
213
|
+
# Cop supports --auto-correct.
|
214
|
+
Style/ColonMethodCall:
|
215
|
+
Enabled: false
|
216
|
+
|
217
|
+
# Offense count: 1
|
218
|
+
# Configuration parameters: Keywords.
|
219
|
+
Style/CommentAnnotation:
|
220
|
+
Enabled: false
|
221
|
+
|
222
|
+
# Offense count: 2
|
223
|
+
# Cop supports --auto-correct.
|
224
|
+
Style/CommentIndentation:
|
225
|
+
Enabled: false
|
226
|
+
|
227
|
+
# Offense count: 18
|
228
|
+
Style/ConstantName:
|
229
|
+
Enabled: false
|
230
|
+
|
231
|
+
# Offense count: 2
|
232
|
+
# Cop supports --auto-correct.
|
233
|
+
Style/DefWithParentheses:
|
234
|
+
Enabled: false
|
235
|
+
|
236
|
+
# Offense count: 27
|
237
|
+
# Cop supports --auto-correct.
|
238
|
+
Style/DeprecatedHashMethods:
|
239
|
+
Enabled: false
|
240
|
+
|
241
|
+
# Offense count: 678
|
242
|
+
Style/Documentation:
|
243
|
+
Enabled: false
|
244
|
+
|
245
|
+
# Offense count: 21
|
246
|
+
# Cop supports --auto-correct.
|
247
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
248
|
+
Style/DotPosition:
|
249
|
+
Enabled: false
|
250
|
+
|
251
|
+
# Offense count: 10
|
252
|
+
Style/DoubleNegation:
|
253
|
+
Enabled: false
|
254
|
+
|
255
|
+
# Offense count: 4
|
256
|
+
Style/EachWithObject:
|
257
|
+
Enabled: false
|
258
|
+
|
259
|
+
# Offense count: 16
|
260
|
+
# Cop supports --auto-correct.
|
261
|
+
Style/ElseAlignment:
|
262
|
+
Enabled: false
|
263
|
+
|
264
|
+
# Offense count: 8
|
265
|
+
Style/EmptyElse:
|
266
|
+
Enabled: false
|
267
|
+
|
268
|
+
# Offense count: 85
|
269
|
+
# Cop supports --auto-correct.
|
270
|
+
# Configuration parameters: AllowAdjacentOneLineDefs.
|
271
|
+
Style/EmptyLineBetweenDefs:
|
272
|
+
Enabled: false
|
273
|
+
|
274
|
+
# Offense count: 121
|
275
|
+
# Cop supports --auto-correct.
|
276
|
+
Style/EmptyLines:
|
277
|
+
Enabled: false
|
278
|
+
|
279
|
+
# Offense count: 23
|
280
|
+
# Cop supports --auto-correct.
|
281
|
+
Style/EmptyLinesAroundAccessModifier:
|
282
|
+
Enabled: false
|
283
|
+
|
284
|
+
# Offense count: 30
|
285
|
+
# Cop supports --auto-correct.
|
286
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
287
|
+
Style/EmptyLinesAroundBlockBody:
|
288
|
+
Enabled: false
|
289
|
+
|
290
|
+
# Offense count: 187
|
291
|
+
# Cop supports --auto-correct.
|
292
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
293
|
+
Style/EmptyLinesAroundClassBody:
|
294
|
+
Enabled: false
|
295
|
+
|
296
|
+
# Offense count: 8
|
297
|
+
# Cop supports --auto-correct.
|
298
|
+
Style/EmptyLinesAroundMethodBody:
|
299
|
+
Enabled: false
|
300
|
+
|
301
|
+
# Offense count: 61
|
302
|
+
# Cop supports --auto-correct.
|
303
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
304
|
+
Style/EmptyLinesAroundModuleBody:
|
305
|
+
Enabled: false
|
306
|
+
|
307
|
+
# Offense count: 3
|
308
|
+
# Cop supports --auto-correct.
|
309
|
+
Style/EmptyLiteral:
|
310
|
+
Enabled: false
|
311
|
+
|
312
|
+
# Offense count: 1
|
313
|
+
# Configuration parameters: Exclude.
|
314
|
+
Style/FileName:
|
315
|
+
Enabled: false
|
316
|
+
|
317
|
+
# Offense count: 13
|
318
|
+
# Cop supports --auto-correct.
|
319
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
320
|
+
Style/FirstParameterIndentation:
|
321
|
+
Enabled: false
|
322
|
+
|
323
|
+
# Offense count: 3
|
324
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
325
|
+
Style/For:
|
326
|
+
Enabled: false
|
327
|
+
|
328
|
+
# Offense count: 20
|
329
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
330
|
+
Style/FormatString:
|
331
|
+
Enabled: false
|
332
|
+
|
333
|
+
# Offense count: 138
|
334
|
+
# Configuration parameters: AllowedVariables.
|
335
|
+
Style/GlobalVars:
|
336
|
+
Enabled: false
|
337
|
+
|
338
|
+
# Offense count: 114
|
339
|
+
# Configuration parameters: MinBodyLength.
|
340
|
+
Style/GuardClause:
|
341
|
+
Enabled: false
|
342
|
+
|
343
|
+
# Offense count: 2708
|
344
|
+
# Cop supports --auto-correct.
|
345
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
346
|
+
Style/HashSyntax:
|
347
|
+
Enabled: true
|
348
|
+
|
349
|
+
# Offense count: 63
|
350
|
+
# Configuration parameters: MaxLineLength.
|
351
|
+
Style/IfUnlessModifier:
|
352
|
+
Enabled: false
|
353
|
+
|
354
|
+
# Offense count: 21
|
355
|
+
# Cop supports --auto-correct.
|
356
|
+
Style/IndentArray:
|
357
|
+
Enabled: false
|
358
|
+
|
359
|
+
# Offense count: 63
|
360
|
+
# Cop supports --auto-correct.
|
361
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
362
|
+
Style/IndentHash:
|
363
|
+
Enabled: false
|
364
|
+
|
365
|
+
# Offense count: 2
|
366
|
+
# Cop supports --auto-correct.
|
367
|
+
Style/IndentationConsistency:
|
368
|
+
Enabled: false
|
369
|
+
|
370
|
+
# Offense count: 49
|
371
|
+
# Cop supports --auto-correct.
|
372
|
+
# Configuration parameters: Width.
|
373
|
+
Style/IndentationWidth:
|
374
|
+
Enabled: false
|
375
|
+
|
376
|
+
# Offense count: 3
|
377
|
+
# Cop supports --auto-correct.
|
378
|
+
Style/Lambda:
|
379
|
+
Enabled: false
|
380
|
+
|
381
|
+
# Offense count: 72
|
382
|
+
# Cop supports --auto-correct.
|
383
|
+
Style/LeadingCommentSpace:
|
384
|
+
Enabled: false
|
385
|
+
|
386
|
+
# Offense count: 13
|
387
|
+
# Cop supports --auto-correct.
|
388
|
+
Style/LineEndConcatenation:
|
389
|
+
Enabled: false
|
390
|
+
|
391
|
+
# Offense count: 26
|
392
|
+
# Cop supports --auto-correct.
|
393
|
+
Style/MethodCallParentheses:
|
394
|
+
Enabled: false
|
395
|
+
|
396
|
+
# Offense count: 17
|
397
|
+
# Cop supports --auto-correct.
|
398
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
399
|
+
Style/MethodDefParentheses:
|
400
|
+
Enabled: false
|
401
|
+
|
402
|
+
# Offense count: 14
|
403
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
404
|
+
Style/MethodName:
|
405
|
+
Enabled: false
|
406
|
+
|
407
|
+
# Offense count: 20
|
408
|
+
Style/ModuleFunction:
|
409
|
+
Enabled: false
|
410
|
+
|
411
|
+
# Offense count: 1
|
412
|
+
Style/MultilineBlockChain:
|
413
|
+
Enabled: false
|
414
|
+
|
415
|
+
# Offense count: 59
|
416
|
+
# Cop supports --auto-correct.
|
417
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
418
|
+
Style/MultilineOperationIndentation:
|
419
|
+
Enabled: false
|
420
|
+
|
421
|
+
# Offense count: 33
|
422
|
+
# Cop supports --auto-correct.
|
423
|
+
Style/NegatedIf:
|
424
|
+
Enabled: false
|
425
|
+
|
426
|
+
# Offense count: 1
|
427
|
+
# Cop supports --auto-correct.
|
428
|
+
Style/NegatedWhile:
|
429
|
+
Enabled: false
|
430
|
+
|
431
|
+
# Offense count: 14
|
432
|
+
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
|
433
|
+
Style/Next:
|
434
|
+
Enabled: false
|
435
|
+
|
436
|
+
# Offense count: 5
|
437
|
+
# Cop supports --auto-correct.
|
438
|
+
Style/NilComparison:
|
439
|
+
Enabled: false
|
440
|
+
|
441
|
+
# Offense count: 5
|
442
|
+
# Cop supports --auto-correct.
|
443
|
+
# Configuration parameters: IncludeSemanticChanges.
|
444
|
+
Style/NonNilCheck:
|
445
|
+
Enabled: false
|
446
|
+
|
447
|
+
# Offense count: 1
|
448
|
+
# Cop supports --auto-correct.
|
449
|
+
Style/Not:
|
450
|
+
Enabled: false
|
451
|
+
|
452
|
+
# Offense count: 43
|
453
|
+
# Cop supports --auto-correct.
|
454
|
+
Style/NumericLiterals:
|
455
|
+
MinDigits: 15
|
456
|
+
|
457
|
+
# Offense count: 4
|
458
|
+
Style/OpMethod:
|
459
|
+
Enabled: false
|
460
|
+
|
461
|
+
# Offense count: 3
|
462
|
+
# Cop supports --auto-correct.
|
463
|
+
# Configuration parameters: AllowSafeAssignment.
|
464
|
+
Style/ParenthesesAroundCondition:
|
465
|
+
Enabled: false
|
466
|
+
|
467
|
+
# Offense count: 59
|
468
|
+
# Cop supports --auto-correct.
|
469
|
+
# Configuration parameters: PreferredDelimiters.
|
470
|
+
Style/PercentLiteralDelimiters:
|
471
|
+
Enabled: false
|
472
|
+
|
473
|
+
# Offense count: 29
|
474
|
+
# Cop supports --auto-correct.
|
475
|
+
Style/PerlBackrefs:
|
476
|
+
Enabled: false
|
477
|
+
|
478
|
+
# Offense count: 35
|
479
|
+
# Configuration parameters: NamePrefix, NamePrefixBlacklist.
|
480
|
+
Style/PredicateName:
|
481
|
+
Enabled: false
|
482
|
+
|
483
|
+
# Offense count: 75
|
484
|
+
# Cop supports --auto-correct.
|
485
|
+
Style/Proc:
|
486
|
+
Enabled: false
|
487
|
+
|
488
|
+
# Offense count: 25
|
489
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
490
|
+
Style/RaiseArgs:
|
491
|
+
Enabled: false
|
492
|
+
|
493
|
+
# Offense count: 13
|
494
|
+
# Cop supports --auto-correct.
|
495
|
+
Style/RedundantBegin:
|
496
|
+
Enabled: false
|
497
|
+
|
498
|
+
# Offense count: 4
|
499
|
+
# Cop supports --auto-correct.
|
500
|
+
Style/RedundantException:
|
501
|
+
Enabled: false
|
502
|
+
|
503
|
+
# Offense count: 36
|
504
|
+
# Cop supports --auto-correct.
|
505
|
+
# Configuration parameters: AllowMultipleReturnValues.
|
506
|
+
Style/RedundantReturn:
|
507
|
+
Enabled: false
|
508
|
+
|
509
|
+
# Offense count: 210
|
510
|
+
# Cop supports --auto-correct.
|
511
|
+
Style/RedundantSelf:
|
512
|
+
Enabled: false
|
513
|
+
|
514
|
+
# Offense count: 25
|
515
|
+
# Configuration parameters: MaxSlashes.
|
516
|
+
Style/RegexpLiteral:
|
517
|
+
Enabled: false
|
518
|
+
|
519
|
+
# Offense count: 15
|
520
|
+
Style/RescueModifier:
|
521
|
+
Enabled: false
|
522
|
+
|
523
|
+
# Offense count: 2
|
524
|
+
# Cop supports --auto-correct.
|
525
|
+
Style/SelfAssignment:
|
526
|
+
Enabled: false
|
527
|
+
|
528
|
+
# Offense count: 4
|
529
|
+
# Cop supports --auto-correct.
|
530
|
+
# Configuration parameters: AllowAsExpressionSeparator.
|
531
|
+
Style/Semicolon:
|
532
|
+
Enabled: false
|
533
|
+
|
534
|
+
# Offense count: 156
|
535
|
+
# Cop supports --auto-correct.
|
536
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
537
|
+
Style/SignalException:
|
538
|
+
Enabled: false
|
539
|
+
|
540
|
+
# Offense count: 2
|
541
|
+
# Configuration parameters: Methods.
|
542
|
+
Style/SingleLineBlockParams:
|
543
|
+
Enabled: false
|
544
|
+
|
545
|
+
# Offense count: 32
|
546
|
+
# Cop supports --auto-correct.
|
547
|
+
# Configuration parameters: AllowIfMethodIsEmpty.
|
548
|
+
Style/SingleLineMethods:
|
549
|
+
Enabled: false
|
550
|
+
|
551
|
+
# Offense count: 8
|
552
|
+
# Cop supports --auto-correct.
|
553
|
+
Style/SingleSpaceBeforeFirstArg:
|
554
|
+
Enabled: false
|
555
|
+
|
556
|
+
# Offense count: 521
|
557
|
+
# Cop supports --auto-correct.
|
558
|
+
Style/SpaceAfterComma:
|
559
|
+
Enabled: false
|
560
|
+
|
561
|
+
# Offense count: 2
|
562
|
+
# Cop supports --auto-correct.
|
563
|
+
Style/SpaceAfterControlKeyword:
|
564
|
+
Enabled: false
|
565
|
+
|
566
|
+
# Offense count: 2
|
567
|
+
# Cop supports --auto-correct.
|
568
|
+
Style/SpaceAfterMethodName:
|
569
|
+
Enabled: false
|
570
|
+
|
571
|
+
# Offense count: 2
|
572
|
+
# Cop supports --auto-correct.
|
573
|
+
Style/SpaceAfterNot:
|
574
|
+
Enabled: false
|
575
|
+
|
576
|
+
# Offense count: 27
|
577
|
+
# Cop supports --auto-correct.
|
578
|
+
# Configuration parameters: EnforcedStyleInsidePipes, SupportedStyles.
|
579
|
+
Style/SpaceAroundBlockParameters:
|
580
|
+
Enabled: false
|
581
|
+
|
582
|
+
# Offense count: 257
|
583
|
+
# Cop supports --auto-correct.
|
584
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
585
|
+
Style/SpaceAroundEqualsInParameterDefault:
|
586
|
+
Enabled: false
|
587
|
+
|
588
|
+
# Offense count: 273
|
589
|
+
# Cop supports --auto-correct.
|
590
|
+
Style/SpaceAroundOperators:
|
591
|
+
Enabled: false
|
592
|
+
|
593
|
+
# Offense count: 50
|
594
|
+
# Cop supports --auto-correct.
|
595
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
596
|
+
Style/SpaceBeforeBlockBraces:
|
597
|
+
Enabled: false
|
598
|
+
|
599
|
+
# Offense count: 13
|
600
|
+
# Cop supports --auto-correct.
|
601
|
+
Style/SpaceBeforeComma:
|
602
|
+
Enabled: false
|
603
|
+
|
604
|
+
# Offense count: 2
|
605
|
+
# Cop supports --auto-correct.
|
606
|
+
Style/SpaceBeforeComment:
|
607
|
+
Enabled: false
|
608
|
+
|
609
|
+
# Offense count: 2
|
610
|
+
# Cop supports --auto-correct.
|
611
|
+
Style/SpaceBeforeSemicolon:
|
612
|
+
Enabled: false
|
613
|
+
|
614
|
+
# Offense count: 178
|
615
|
+
# Cop supports --auto-correct.
|
616
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
617
|
+
Style/SpaceInsideBlockBraces:
|
618
|
+
Enabled: false
|
619
|
+
|
620
|
+
# Offense count: 100
|
621
|
+
# Cop supports --auto-correct.
|
622
|
+
Style/SpaceInsideBrackets:
|
623
|
+
Enabled: false
|
624
|
+
|
625
|
+
# Offense count: 522
|
626
|
+
# Cop supports --auto-correct.
|
627
|
+
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SupportedStyles.
|
628
|
+
Style/SpaceInsideHashLiteralBraces:
|
629
|
+
Enabled: false
|
630
|
+
|
631
|
+
# Offense count: 428
|
632
|
+
# Cop supports --auto-correct.
|
633
|
+
Style/SpaceInsideParens:
|
634
|
+
Enabled: false
|
635
|
+
|
636
|
+
# Offense count: 46
|
637
|
+
# Cop supports --auto-correct.
|
638
|
+
Style/SpecialGlobalVars:
|
639
|
+
Enabled: false
|
640
|
+
|
641
|
+
# Offense count: 3072
|
642
|
+
# Cop supports --auto-correct.
|
643
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
644
|
+
Style/StringLiterals:
|
645
|
+
Enabled: false
|
646
|
+
|
647
|
+
# Offense count: 16
|
648
|
+
# Cop supports --auto-correct.
|
649
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
650
|
+
Style/StringLiteralsInInterpolation:
|
651
|
+
Enabled: false
|
652
|
+
|
653
|
+
# Offense count: 1
|
654
|
+
Style/StructInheritance:
|
655
|
+
Enabled: false
|
656
|
+
|
657
|
+
# Offense count: 42
|
658
|
+
# Cop supports --auto-correct.
|
659
|
+
# Configuration parameters: IgnoredMethods.
|
660
|
+
Style/SymbolProc:
|
661
|
+
Enabled: false
|
662
|
+
|
663
|
+
# Offense count: 17
|
664
|
+
# Cop supports --auto-correct.
|
665
|
+
Style/Tab:
|
666
|
+
Enabled: false
|
667
|
+
|
668
|
+
# Offense count: 41
|
669
|
+
# Cop supports --auto-correct.
|
670
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
671
|
+
Style/TrailingBlankLines:
|
672
|
+
Enabled: false
|
673
|
+
|
674
|
+
# Offense count: 32
|
675
|
+
# Cop supports --auto-correct.
|
676
|
+
# Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
|
677
|
+
Style/TrailingComma:
|
678
|
+
Enabled: false
|
679
|
+
|
680
|
+
# Offense count: 8
|
681
|
+
# Cop supports --auto-correct.
|
682
|
+
Style/TrailingWhitespace:
|
683
|
+
Enabled: false
|
684
|
+
|
685
|
+
# Offense count: 57
|
686
|
+
# Cop supports --auto-correct.
|
687
|
+
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
|
688
|
+
Style/TrivialAccessors:
|
689
|
+
Enabled: false
|
690
|
+
|
691
|
+
# Offense count: 24
|
692
|
+
# Cop supports --auto-correct.
|
693
|
+
Style/UnneededPercentQ:
|
694
|
+
Enabled: false
|
695
|
+
|
696
|
+
# Offense count: 2
|
697
|
+
# Cop supports --auto-correct.
|
698
|
+
Style/UnneededPercentX:
|
699
|
+
Enabled: false
|
700
|
+
|
701
|
+
# Offense count: 1
|
702
|
+
# Cop supports --auto-correct.
|
703
|
+
Style/VariableInterpolation:
|
704
|
+
Enabled: false
|
705
|
+
|
706
|
+
# Offense count: 5
|
707
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
708
|
+
Style/VariableName:
|
709
|
+
Enabled: false
|
710
|
+
|
711
|
+
# Offense count: 6
|
712
|
+
# Cop supports --auto-correct.
|
713
|
+
Style/WhileUntilDo:
|
714
|
+
Enabled: false
|
715
|
+
|
716
|
+
# Offense count: 7
|
717
|
+
# Configuration parameters: MaxLineLength.
|
718
|
+
Style/WhileUntilModifier:
|
719
|
+
Enabled: false
|
720
|
+
|
721
|
+
# Offense count: 77
|
722
|
+
# Cop supports --auto-correct.
|
723
|
+
# Configuration parameters: WordRegex.
|
724
|
+
Style/WordArray:
|
725
|
+
MinSize: 11
|