forked from pymc-devs/pymc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
114 lines (114 loc) · 3.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
exclude: ^(docs/logos|pymc/tests/data)/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: no-commit-to-branch
args: [--branch, master]
- id: requirements-txt-fixer
exclude: ^requirements-dev\.txt$
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.971
hooks:
- id: mypy
name: Run static type checks
language: python
entry: python ./scripts/run_mypy.py --verbose
additional_dependencies:
- pandas
- types-cachetools
- types-filelock
- types-setuptools
- arviz
- aesara==2.8.2
- aeppl==0.0.35
always_run: true
require_serial: true
pass_filenames: false
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
name: isort
- repo: https://github.com/asottile/pyupgrade
rev: v2.37.3
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
- id: black-jupyter
- repo: https://github.com/PyCQA/pylint
rev: v2.14.5
hooks:
- id: pylint
args: [--rcfile=.pylintrc]
files: ^pymc/
- repo: https://github.com/MarcoGorelli/madforhooks
rev: 0.3.0
hooks:
- id: no-print-statements
files: ^pymc/
- repo: local
hooks:
- id: check-no-tests-are-ignored
additional_dependencies: [pandas,pyyaml]
entry: python scripts/check_all_tests_are_covered.py
files: ^\.github/workflows/pytest\.yml$
language: python
name: Check no tests are ignored
pass_filenames: false
- id: pip-from-conda
additional_dependencies: [pyyaml]
entry: python scripts/generate_pip_deps_from_conda.py
files: ^conda-envs/environment-dev.yml$
language: python
name: Generate pip dependency from conda
- id: no-relative-imports
name: No relative imports
entry: from \.[\.\w]* import
types: [python]
language: pygrep
- id: no-internal-links
name: Check no links that should be cross-references are in the docs
description: >-
'A quick check for the links in the intersphinx '
'mapping inside `docs/source/`'
'See docs/source/conf.py for more information.'
files: ^docs/source/
# Files that should be ignored:
# - index.md
# - 404.md
# - contributing/release_checklist.md
# The other files are under development and should be
# removed from the list once they are revised.
exclude: >
(?x)(index.md|
404.md|
contributing/release_checklist.md|
contributing/versioning_schemes_explanation.md|
learn/examples.md)
entry: >
(?x)(arviz-devs.github.io|
python.arviz.org|
aesara.readthedocs.io|
aeppl.readthedocs.io|
pymc-experimental.readthedocs.io|
docs.pymc.io|
www.pymc.io|
numpy.org/doc|
pymc-examples.readthedocs.io|
myst-parser.readthedocs.io|
myst-nb.readthedocs.io|
docs.python.org|
xarray.pydata.org)
language: pygrep
types_or: [markdown, rst, jupyter]