diff options
author | Go MAEDA <maeda@farend.jp> | 2023-12-20 07:12:49 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-12-20 07:12:49 +0000 |
commit | b5527205907048d039c34d6fac2635f363ae4819 (patch) | |
tree | ad8f1e4a48ef298af2594fd37ac0e02eba5f094f | |
parent | f3b6c3a37856d17765922c93d4e48c9b7c9b83e7 (diff) | |
download | redmine-b5527205907048d039c34d6fac2635f363ae4819.tar.gz redmine-b5527205907048d039c34d6fac2635f363ae4819.zip |
Disable RuboCop Style/RedundantParentheses (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22529 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | .rubocop.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index affdc3b66..b30000672 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -239,6 +239,9 @@ Style/RedundantConstantBase: Exclude: - 'config/environments/production.rb' +Style/RedundantParentheses: + Enabled: false + Style/Semicolon: Enabled: false |