generated from python-discord/code-jam-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pre-commit-config.yaml
36 lines (35 loc) · 1.14 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
## 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
- id: trailing-whitespace
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