We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09b859f commit e284904Copy full SHA for e284904
.pre-commit-config.yaml
@@ -0,0 +1,22 @@
1
+repos:
2
+- repo: https://github.com/kynan/nbstripout
3
+ rev: 0.5.0
4
+ hooks:
5
+ - id: nbstripout
6
+- repo: local
7
8
+ - id: lint
9
+ name: Lint
10
+ entry: make lint
11
+ language: system
12
+ pass_filenames: false
13
+ - id: type-check
14
+ name: Type Check
15
+ entry: make type
16
17
18
+ - id: test
19
+ name: Test
20
+ entry: make test
21
22
Makefile
@@ -1,4 +1,5 @@
install:
+ pre-commit install
poetry install --with dev
fix:
0 commit comments