.rubocop.yml in pg_export-1.0.0.rc5 vs .rubocop.yml in pg_export-1.0.0.rc6

- old
+ new

@@ -4,19 +4,34 @@ Metrics/BlockLength: Exclude: - 'bin/pg_export' ExcludedMethods: ['describe', 'context'] -Metrics/LineLength: - Max: 200 +Layout/LineLength: + Max: 140 Style/ParallelAssignment: Enabled: false -Naming/UncommunicativeMethodParamName: +Naming/MethodParameterName: Enabled: false -Documentation: +Style/Documentation: Enabled: false Lint/UnusedMethodArgument: Enabled: false + +Metrics/MethodLength: + Max: 50 + +Metrics/CyclomaticComplexity: + Max: 30 + +Style/TrailingCommaInHashLiteral: + Enabled: false + +Metrics/AbcSize: + Max: 30 + +Metrics/PerceivedComplexity: + Max: 30