| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | # This is the configuration used to check the rubocop source code.#inherit_from: .rubocop_todo.ymlAllCops:  TargetRubyVersion: 2.1# These are areas where ThrowTheSwitch's coding style diverges from the Ruby standardStyle/SpecialGlobalVars:  EnforcedStyle: use_perl_namesStyle/FormatString:  Enabled: falseStyle/GlobalVars:  Enabled: falseStyle/RegexpLiteral:  AllowInnerSlashes: trueStyle/HashSyntax:  EnforcedStyle: no_mixed_keys# This is disabled because it seems to get confused over nested hashesStyle/AlignHash:  Enabled: false  EnforcedHashRocketStyle: table  EnforcedColonStyle: table# We purposefully use these insecure features because they're what makes Ruby awesomeSecurity/Eval:  Enabled: falseSecurity/YAMLLoad:  Enabled: false# At this point, we're not ready to enforce inline documentation requirementsStyle/Documentation:  Enabled: falseStyle/DocumentationMethod:  Enabled: false# At this point, we're not ready to enforce any metricsMetrics/AbcSize:  Enabled: falseMetrics/BlockLength:  Enabled: falseMetrics/BlockNesting:  Enabled: falseMetrics/ClassLength:  Enabled: falseMetrics/CyclomaticComplexity:  Enabled: falseMetrics/LineLength:  Enabled: falseMetrics/MethodLength:  Enabled: falseMetrics/ModuleLength:  Enabled: falseMetrics/ParameterLists:  Enabled: falseMetrics/PerceivedComplexity:  Enabled: false
 |