Skip to content

Commit f26c6ec

Browse files
committed
Add pre-commit configuration
1 parent c356806 commit f26c6ec

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .pre-commit-config.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
repos:
2+
- repo: local
3+
hooks:
4+
- id: black
5+
stages: [commit]
6+
name: black
7+
language: system
8+
entry: black
9+
types: [python]
10+
- id: isort
11+
stages: [commit]
12+
name: isort
13+
language: system
14+
entry: isort
15+
types: [python]
16+
- id: flake8
17+
stages: [commit]
18+
name: flake8
19+
language: system
20+
entry: flake8
21+
types: [python]

0 commit comments

Comments
 (0)