-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
54 lines (54 loc) · 1.51 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
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.1
hooks:
- id: pyupgrade
args:
- --py37-plus
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
args:
- --profile=black
- --skip-glob=wandb/**/*
- --thirdparty=wandb
- repo: https://github.com/myint/autoflake
rev: v1.4
hooks:
- id: autoflake
args:
- -r
- --exclude=wandb
- --in-place
- --remove-unused-variables
- --remove-all-unused-imports
- repo: https://github.com/python/black
rev: 22.3.0
hooks:
- id: black
args:
- --line-length=127
- --exclude=wandb
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
hooks:
- id: codespell
args:
- --ignore-words-list=nd,reacher,thist,ths,magent
- --skip=docs/css/termynal.css,docs/js/termynal.js
- repo: https://github.com/python-poetry/poetry
rev: 1.2.1
hooks:
- id: poetry-lock
name: poetry-lock no update
args: ["--no-update"]
stages: [manual]
- id: poetry-export
name: poetry-export requirements.txt
args: ["--without-hashes", "-o", "requirements/requirements.txt"]
stages: [manual]
- id: poetry-export
name: poetry-export requirements-atari.txt
args: ["--without-hashes", "-o", "requirements/requirements-atari.txt", "--with", "atari"]
stages: [manual]