-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds dependanbot configurations for automatically updating python dependencies and github actions configurations. We also add a `.yamllint.yaml` configuration files for yamllint to suppress certain types of YAML errors.
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 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,15 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
|
||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
groups: | ||
python-packages: | ||
patterns: | ||
- "*" |
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,13 @@ | ||
extends: default | ||
|
||
rules: | ||
line-length: | ||
max: 99 | ||
|
||
# Disable checks for truthy values since yamllint reports errors on "on" keywords in GitHub | ||
# Actions configuration files (since in YAML 1.1 "on" is a boolean). We can remove this once | ||
# yamllint defaults to YAML 1.2 or provides options to specify that. | ||
truthy: disable | ||
|
||
# This requires all YAML files begin with "---", which in practice is rarely needed. | ||
document-start: disable |