-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
37 lines (34 loc) · 918 Bytes
/
.pre-commit-config.yaml
File metadata and controls
37 lines (34 loc) · 918 Bytes
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
# See http://pre-commit.com for more information
# See http://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: \.md$
- id: end-of-file-fixer
exclude: setup\.cfg
- id: check-ast
- id: check-added-large-files
args: [ '--maxkb=200' ]
- id: check-merge-conflict
- id: detect-private-key
- id: mixed-line-ending
args: [ '--fix=lf' ]
exclude: (\.bat|\.csv)$
- repo: local
hooks:
- id: cypresspoint-unittest
name: Run all unit tests for Cypress Point
language: system
entry: python -m unittest -v
types: [ python ]
pass_filenames: false
- repo: https://github.com/PyCQA/isort.git
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v2.0.1
hooks:
- id: autopep8