File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ repos :
4
+ - repo : https://github.com/pre-commit/pre-commit-hooks
5
+ rev : v4.2.0
6
+ hooks :
7
+ - id : trailing-whitespace
8
+ - id : end-of-file-fixer
9
+ - id : check-yaml
10
+ - id : check-added-large-files
11
+ - repo : https://github.com/psf/black
12
+ rev : 22.3.0
13
+ hooks :
14
+ - id : black
15
+ args : [--config, pyproject.toml]
16
+ - repo : https://github.com/econchick/interrogate
17
+ rev : 1.5.0
18
+ hooks :
19
+ - id : interrogate
20
+ args : [-c, pyproject.toml]
21
+ - repo : https://github.com/terrencepreilly/darglint
22
+ rev : v1.8.1
23
+ hooks :
24
+ - id : darglint
25
+ args : [-v 2] # this config makes the error messages a bit less cryptic.
26
+ - repo : https://github.com/PyCQA/flake8
27
+ rev : 4.0.1
28
+ hooks :
29
+ - id : flake8
30
+ args : [--exclude, nbconvert_config.py]
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ dependencies:
6
6
- pandas>=0.23
7
7
- xarray
8
8
- pip
9
+ - pre-commit
10
+ - pytest
9
11
- pip :
10
12
- lazy-loader
You can’t perform that action at this time.
0 commit comments