forked from DontShaveTheYak/cf2tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
41 lines (40 loc) · 966 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
---
repos:
- repo: local
hooks:
- id: format
name: format
entry: nox
language: python
language_version: python3
types: ["python"]
args: ["-rs", "black", "-p", "3.11"]
require_serial: true
additional_dependencies: []
- id: lint
name: lint
entry: nox
language: python
language_version: python3
types: ["python"]
args: ["-rs", "lint", "-p", "3.11"]
require_serial: true
additional_dependencies: []
- id: mypy
name: mypy
entry: nox
language: python
language_version: python3
types: ["python"]
args: ["-rs", "mypy", "-p", "3.11"]
require_serial: true
additional_dependencies: []
- id: tests
name: tests
entry: nox
language: python
language_version: python3
types: ["python"]
args: ["-rs", "tests", "-p", "3.11"]
require_serial: true
additional_dependencies: []