diff options
author | Go MAEDA <maeda@farend.jp> | 2022-09-27 09:11:10 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-09-27 09:11:10 +0000 |
commit | f7e611dfd0fb87bc3d75996b276ddc3d9364ac8b (patch) | |
tree | 08da7df8bb24536ffa4de32d993ae0f2ece1cf6a /.rubocop.yml | |
parent | 42854ad2ae9e6b6e3532cf520eec3c993226114a (diff) | |
download | redmine-f7e611dfd0fb87bc3d75996b276ddc3d9364ac8b.tar.gz redmine-f7e611dfd0fb87bc3d75996b276ddc3d9364ac8b.zip |
Disable RuboCop Style/SoleNestedConditional (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@21855 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index b8b060aee..b166316da 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -213,6 +213,9 @@ Style/Semicolon: Style/SlicingWithRange: Enabled: false +Style/SoleNestedConditional: + Enabled: false + Style/TernaryParentheses: Enabled: false |