Skip to content

Commit

Permalink
lint-docstring: Enforce lower maximum file docstring length of 88.
Browse files Browse the repository at this point in the history
This synchronizes with other line-lengths, as per black and other tools.
  • Loading branch information
neiljp committed Feb 20, 2023
1 parent 90230ae commit 5745272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lint-docstring
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ from typing import Dict, List


TABLE_OFFSET = 10
COLUMN_WIDTHS = (23, 20, 103)
COLUMN_WIDTHS = (23, 20, 88) # Use 88 as line-length for docstring for simplicity
SPACEBAR = " "

# leaving blank rows after exhausting files from each folder
Expand Down

0 comments on commit 5745272

Please sign in to comment.