diff options
author | Go MAEDA <maeda@farend.jp> | 2023-08-09 23:42:42 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-08-09 23:42:42 +0000 |
commit | 679ba509da39fa1537db9e5c0321d280cb44ad52 (patch) | |
tree | a244fae68e9e14ab1382f5d96afd2a9075dfac4d /.rubocop.yml | |
parent | 5aec6e36f1e2f60ed1e0b8bbb0eda56b4b98a941 (diff) | |
download | redmine-679ba509da39fa1537db9e5c0321d280cb44ad52.tar.gz redmine-679ba509da39fa1537db9e5c0321d280cb44ad52.zip |
Update RuboCop to 1.56 (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@22278 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 89564b5a1..d7f870235 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -73,6 +73,9 @@ Layout/SpaceBeforeBlockBraces: # str = path.to_s.split(%r{[/\\]}).select{|p| !p.blank?}.join("/") Enabled: false +Layout/SpaceBeforeFirstArg: + Enabled: false + Layout/SpaceInsideBlockBraces: Enabled: false @@ -239,6 +242,9 @@ Style/SlicingWithRange: Style/SoleNestedConditional: Enabled: false +Style/StringLiteralsInInterpolation: + Enabled: false + Style/TernaryParentheses: Enabled: false |