summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2024-04-02 11:50:57 -0400
committerGitHub <noreply@github.com>2024-04-02 15:50:57 +0000
commitd27eb181f6ab419d1745a1fe9b94094be17a618f (patch)
tree183532e344169db844089cd4d08ec2871b694342
parentf8b03c39254ad5c30ed0cf0ea7522e8a5114b38a (diff)
Reduce `LineLength` from 320 to 300 (#29636)
-rw-r--r--.haml-lint.yml2
-rw-r--r--.rubocop.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.haml-lint.yml b/.haml-lint.yml
index 2b553ca56c5..e493afb85f4 100644
--- a/.haml-lint.yml
+++ b/.haml-lint.yml
@@ -11,6 +11,6 @@ linters:
MiddleDot:
enabled: true
LineLength:
- max: 320
+ max: 300
ViewLength:
max: 200 # Override default value of 100 inherited from rubocop
diff --git a/.rubocop.yml b/.rubocop.yml
index 2aa72d9e5e8..7fb8ab0c55f 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -39,7 +39,7 @@ Layout/FirstHashElementIndentation:
# Reason: Currently disabled in .rubocop_todo.yml
# https://docs.rubocop.org/rubocop/cops_layout.html#layoutlinelength
Layout/LineLength:
- Max: 320 # Default of 120 causes a duplicate entry in generated todo file
+ Max: 300 # Default of 120 causes a duplicate entry in generated todo file
## Disable most Metrics/*Length cops
# Reason: those are often triggered and force significant refactors when this happend