diff options
-rw-r--r-- | .rubocop.yml | 3 | ||||
-rw-r--r-- | .rubocop_todo.yml | 8 |
2 files changed, 4 insertions, 7 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 66fc64d24..adca4494b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -207,6 +207,9 @@ Style/RaiseArgs: Style/SlicingWithRange: Enabled: false +Style/TernaryParentheses: + Enabled: false + Style/TrailingCommaInArrayLiteral: Enabled: false diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 050d2a06b..bfe114320 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,6 +1,6 @@ # This configuration was generated by # `rubocop --auto-gen-config --exclude-limit 20 --no-offense-counts --no-auto-gen-timestamp` -# using RuboCop version 1.35.0. +# using RuboCop version 1.35.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 @@ -1801,12 +1801,6 @@ Style/SymbolProc: Enabled: false # This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: EnforcedStyle, AllowSafeAssignment. -# SupportedStyles: require_parentheses, require_no_parentheses, require_parentheses_when_complex -Style/TernaryParentheses: - Enabled: false - -# This cop supports safe autocorrection (--autocorrect). # Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, AllowedMethods. # AllowedMethods: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym Style/TrivialAccessors: |