-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.pre-commit-config.yaml
48 lines (47 loc) · 1.21 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
default_language_version:
python: python3.8
default_stages: [commit]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- id: check-yaml
- id: check-case-conflict
- repo: https://github.com/pycqa/isort
rev: 5.8.0
hooks:
- id: isort
name: isort
args: ["--profile", "black"]
exclude: ^scaleapi/api_client/
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
exclude: ^scaleapi/api_client/
- repo: https://github.com/PyCQA/flake8
rev: 3.8.4
hooks:
- id: flake8
exclude: ^scaleapi/api_client/
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: python
types: [python]
files: scaleapi/
exclude: ^scaleapi/api_client/
additional_dependencies:
- "pylint>=2.7.4"
- "requests>=2.25.0"
- "urllib3>=1.26.0"
- "pytest>=6.2.2"
- "python_dateutil>=2.8.2"
- "pydantic>=2"
- "typing-extensions>=4.7.1"
language_version: python3.8