-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
0ebef19
commit 34841af
Showing
10 changed files
with
163 additions
and
47 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 @@ | ||
crate |
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,23 @@ | ||
name: Update pre-commit hooks | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: 0 0 * * * | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- uses: vrslev/[email protected] | ||
- uses: peter-evans/create-pull-request@v5 | ||
with: | ||
branch: pre-commit-autoupdate | ||
title: "chore(deps): Update pre-commit hooks" | ||
commit-message: "chore(deps): Update pre-commit hooks" | ||
body: Update pre-commit hooks | ||
labels: dependencies | ||
delete-branch: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
repos: | ||
# lint yaml, line and whitespace | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: requirements-txt-fixer | ||
- id: mixed-line-ending | ||
- id: check-executables-have-shebangs | ||
- id: check-shebang-scripts-are-executable | ||
|
||
# lint the dockerfiles | ||
- repo: https://github.com/hadolint/hadolint | ||
rev: v2.12.1-beta | ||
hooks: | ||
- id: hadolint | ||
|
||
# prettier | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: "v3.0.3" # Use the sha / tag you want to point at | ||
hooks: | ||
- id: prettier | ||
types_or: [file, bash, sh, javascript, jsx, ts, tsx] | ||
additional_dependencies: | ||
- [email protected] | ||
exclude: ^(Dockerfile*) | ||
|
||
- repo: https://github.com/codespell-project/codespell.git | ||
rev: "v2.2.5" # Use the sha / tag you want to point at | ||
hooks: | ||
- id: codespell | ||
types: [text] | ||
args: [--ignore-words=.dictionary.txt] | ||
exclude: ^(Dockerfile*) | ||
|
||
- repo: https://github.com/shellcheck-py/shellcheck-py | ||
rev: v0.9.0.6 | ||
hooks: | ||
- id: shellcheck | ||
|
||
- repo: https://github.com/sirosen/check-jsonschema | ||
rev: 0.27.0 | ||
hooks: | ||
- id: check-github-actions | ||
- id: check-github-workflows | ||
|
||
- repo: https://github.com/doublify/pre-commit-rust | ||
rev: v1.0 | ||
hooks: | ||
- id: fmt | ||
- id: cargo-check | ||
|
||
# lint python formatting | ||
- repo: https://github.com/psf/black | ||
rev: 23.9.1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: "6.1.0" # pick a git hash / tag to point to | ||
hooks: | ||
- id: flake8 | ||
args: ["--extend-ignore=W503,W504,E501"] |
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,9 +1,9 @@ | ||
{ | ||
"host": "pete", | ||
"port": 22, | ||
"user": "docker", | ||
"ignore":[".git",".vscode"], | ||
"remotePath": "~", | ||
"identity_file": "~/.ssh/id_rsa", | ||
"uploadOnSave": true | ||
} | ||
"host": "pete", | ||
"port": 22, | ||
"user": "docker", | ||
"ignore": [".git", ".vscode"], | ||
"remotePath": "~", | ||
"identity_file": "~/.ssh/id_rsa", | ||
"uploadOnSave": 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
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