-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 2024-08/non-thru-ctrl
- Loading branch information
Showing
3 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Summary: yamllint configuration. | ||
# See https://yamllint.readthedocs.io/ for info about configuration options. | ||
|
||
rules: | ||
line-length: | ||
# YAML files (especially GitHub Actions workflows) tend to end up with | ||
# long lines. The default of 80 is pretty limiting, and besides, in Python | ||
# code linting, we set line lengths to 100. May as well follow suit here. | ||
max: 100 | ||
# Another common occurrence in YAML files is long URLs. The next two | ||
# settings are not specific to URLs, but help. It saves developer time by | ||
# not requiring comment directives to disable warnings at every occurrence. | ||
allow-non-breakable-words: true | ||
allow-non-breakable-inline-mappings: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters