forked from stac-utils/pystac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
43 lines (38 loc) · 992 Bytes
/
.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
# Configuration file for pre-commit (https://pre-commit.com/).
# Please run `pre-commit run --all-files` when adding or changing entries.
repos:
- repo: local
hooks:
- id: black
name: black
entry: black
language: system
stages: [commit]
types: [python]
- id: codespell
name: codespell
entry: codespell
args: [--ignore-words=.codespellignore]
language: system
stages: [commit]
types_or: [jupyter, markdown, python, shell]
- id: doc8
name: doc8
entry: doc8
language: system
files: \.rst$
require_serial: true
- id: flake8
name: flake8
entry: flake8
language: system
stages: [commit]
types: [python]
- id: mypy
name: mypy
entry: mypy
args: [--no-incremental]
language: system
stages: [commit]
types: [python]
require_serial: true