-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
38 lines (37 loc) · 1.23 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
## Pre-commit setup
# See https://github.com/python-discord/code-jam-template/tree/main#pre-commit-run-linting-before-committing
#
# Please uncomment the right lines depending on your setup.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
exclude: "\\.(drawio|svg|js|html|css)$"
- id: trailing-whitespace
exclude: "\\.(svg|js|html|css)$"
args: [--markdown-linebreak-ext=md]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.5.1
hooks:
- id: python-check-blanket-noqa
- repo: local
hooks:
- id: isort
name: ISort
entry: python -m isort . # Default Env setup
# entry: pipenv run python -m isort . # Pipenv setup
# entry: poetry run python -m isort . # Poetry setup
language: system
types: [python]
require_serial: true
- id: flake8
name: Flake8
entry: python -m flake8 # Default Env setup
# entry: pipenv run python -m flake8 # Pipenv setup
# entry: poetry run python -m flake8 # Poetry setup
language: system
types: [python]
require_serial: true