-
Notifications
You must be signed in to change notification settings - Fork 10
/
.pre-commit-config.yaml
42 lines (42 loc) · 1.12 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
39
40
41
42
default_language_version :
python : python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-merge-conflict
- id: check-yaml
- id: mixed-line-ending
args:
- --fix=no
- id: no-commit-to-branch
args:
- --branch=master
- id: check-added-large-files
args:
- --maxkb=2048
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.9.3
hooks:
- id : isort
args : ["--profile", "black", "--filter-files"]
- repo: https://github.com/asottile/blacken-docs
rev: v1.8.0
hooks:
- id: blacken-docs
additional_dependencies: [black==20.8b0]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
additional_dependencies:
- flake8-docstrings
- flake8-import-order
exclude: simSPI/__init__.py,tests/__init__.py,simSPI/linear_simulator/__init__.py