-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.pre-commit-hooks.yaml
More file actions
33 lines (33 loc) · 1.09 KB
/
.pre-commit-hooks.yaml
File metadata and controls
33 lines (33 loc) · 1.09 KB
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
- id: pyproject2conda-project
name: pyproject2conda-project
description:
"Automatically run 'pyproject2conda project' on project dependencies"
entry: pyproject2conda project
language: python
files: ^pyproject\.toml$
args: ["--overwrite=force", "--verbose"]
pass_filenames: false
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: pyproject2conda-yaml
name: pyproject2conda-yaml
description:
"Automatically run 'pyproject2conda yaml' on project dependencies"
entry: pyproject2conda yaml
language: python
files: ^pyproject\.toml$
args: ["--group=dev", "--output=environment.yaml"]
pass_filenames: false
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: pyproject2conda-requirements
name: pyproject2conda-requirements
description:
"Automatically run 'pyproject2conda yaml' on project dependencies"
entry: pyproject2conda requirements
language: python
files: ^pyproject\.toml$
args: ["--group=dev", "--output=requirements-dev.in"]
pass_filenames: false
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"