added pre-commit

This commit is contained in:
Yannic Kilcher
2022-12-13 12:16:55 +01:00
parent 159e9cfc13
commit dda47909cd
3 changed files with 67 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
name: pre-commit
on:
push:
pull_request:
workflow_call:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
+50
View File
@@ -0,0 +1,50 @@
exclude: "build|stubs"
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: check-ast
- id: check-yaml
- id: check-json
- id: pretty-format-json
- id: check-case-conflict
- id: detect-private-key
- id: detect-aws-credentials
- id: fix-encoding-pragma
- id: forbid-submodules
- id: mixed-line-ending
- id: requirements-txt-fixer
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-byte-order-marker
- id: check-symlinks
- id: check-merge-conflict
- id: check-added-large-files
args: ["--maxkb=1024"]
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.11.1
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
- id: prettier
args: ["--write"]
+1
View File
@@ -0,0 +1 @@
3.10.8