-
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.
- Loading branch information
Drew Meyers
committed
May 10, 2024
1 parent
9968660
commit 657df89
Showing
120 changed files
with
3,848 additions
and
3,405 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
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
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,28 @@ | ||
{ | ||
"default": true, | ||
"MD029": { | ||
"style": "ordered" | ||
}, | ||
"MD033": false, | ||
"MD013": false, | ||
"MD002": false, | ||
"MD026": false, | ||
"MD041": false, | ||
"MD005": false, | ||
"MD007": false, | ||
"MD034": false, | ||
"MD024": false, | ||
"MD045": false, | ||
"MD012": false, | ||
"MD031": false, | ||
"MD032": false, | ||
"MD036": false, | ||
"MD055": false, | ||
"MD056": false, | ||
"MD022": false, | ||
"MD042": false, | ||
"MD004": false, | ||
"MD025": false, | ||
"MD001": false, | ||
"MD051": false | ||
} |
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,67 @@ | ||
fail_fast: true | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-xml | ||
- id: check-added-large-files | ||
args: | ||
- --maxkb=50000 | ||
- id: check-json # Checks json files for parsable syntax. | ||
- id: pretty-format-json # Sets a standard for formatting json files. | ||
args: | ||
- --autofix | ||
- id: requirements-txt-fixer # Sorts entries in requirements.txt. | ||
- id: check-ast # Simply checks whether the files parse as valid python. | ||
- id: detect-private-key # Detects the presence of private keys. | ||
- id: detect-aws-credentials # Detects *your* aws credentials from the aws cli credentials file. | ||
args: | ||
- --allow-missing-credentials | ||
- id: check-toml # Checks toml files for parsable syntax. | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: "v0.39.0" | ||
hooks: | ||
- id: markdownlint | ||
args: ["--config", ".markdownlintrc", "--ignore", "CHANGELOG.md"] | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: ["--profile", "black"] | ||
|
||
- repo: https://github.com/psf/black-pre-commit-mirror | ||
rev: 24.1.1 | ||
hooks: | ||
- id: black | ||
|
||
# - repo: https://github.com/astral-sh/ruff-pre-commit | ||
# rev: v0.2.1 | ||
# hooks: | ||
# - id: ruff | ||
# args: [ --fix ] | ||
|
||
- repo: https://github.com/PyCQA/bandit | ||
rev: "1.7.7" # you must change this to newest version | ||
hooks: | ||
- id: bandit | ||
args: | ||
[ | ||
"--configfile=pyproject.toml", | ||
"--severity-level=high", | ||
"--confidence-level=high", | ||
] | ||
additional_dependencies: [".[toml]"] | ||
|
||
- repo: https://github.com/hadolint/hadolint | ||
rev: v2.12.1-beta | ||
hooks: | ||
- id: hadolint # requires hadolint is installed (brew install hadolint) | ||
args: | ||
- --no-color | ||
- --failure-threshold=error | ||
- --verbose |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [X.Y.Z] - 2022-MM-DD | ||
|
||
### Added | ||
### Added | ||
|
||
- | ||
- | ||
- | ||
- |
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
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
Oops, something went wrong.