File tree Expand file tree Collapse file tree 2 files changed +31
-14
lines changed Expand file tree Collapse file tree 2 files changed +31
-14
lines changed Original file line number Diff line number Diff line change @@ -130,4 +130,7 @@ dmypy.json
130
130
131
131
132
132
# Mac OS desktop services store
133
- .DS_Store
133
+ .DS_Store
134
+
135
+ # Poetry lockfile (no need for deploys, best practice is to not check this in)
136
+ poetry.lock
Original file line number Diff line number Diff line change
1
+ fail_fast : true
1
2
repos :
2
- - repo : https://github.com/ambv/black
3
- rev : stable
3
+ - repo : local
4
4
hooks :
5
- - id : black
5
+ - id : system
6
+ name : Black
7
+ entry : poetry run black .
8
+ pass_filenames : false
9
+ language : system
6
10
7
- - repo : https://gitlab.com/pycqa/flake8
8
- rev : 3.7.9
11
+ - repo : local
9
12
hooks :
10
- - id : flake8
13
+ - id : system
14
+ name : flake8
15
+ entry : poetry run flake8 .
16
+ pass_filenames : false
17
+ language : system
11
18
12
- - repo : https://github.com/pre-commit/mirrors-mypy
13
- rev : ' v0.720'
19
+ - repo : local
14
20
hooks :
15
- - id : mypy
16
- args : [--ignore-missing-imports]
21
+ - id : system
22
+ name : pylint
23
+ entry : poetry run pylint nucleus
24
+ pass_filenames : false
25
+ language : system
17
26
18
- - repo : https://github.com/pre-commit/mirrors-pylint
19
- rev : v2.3.1
27
+ - repo : local
20
28
hooks :
21
- - id : pylint
29
+ - id : system
30
+ name : mypy
31
+ entry : poetry run mypy --ignore-missing-imports nucleus
32
+ pass_filenames : false
33
+ language : system
34
+
35
+
You can’t perform that action at this time.
0 commit comments