-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy path.pre-commit-hooks.yaml
More file actions
39 lines (39 loc) · 1.27 KB
/
.pre-commit-hooks.yaml
File metadata and controls
39 lines (39 loc) · 1.27 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
34
35
36
37
38
39
- id: cycode
name: Cycode Secrets pre-commit defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'secret', 'pre-commit' ]
- id: cycode-sca
name: Cycode SCA pre-commit defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'sca', 'pre-commit' ]
- id: cycode-sast
name: Cycode SAST pre-commit defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'sast', 'pre-commit' ]
- id: cycode-pre-push
name: Cycode Secrets pre-push defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'secret', 'pre-push' ]
stages: [pre-push]
- id: cycode-sca-pre-push
name: Cycode SCA pre-push defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'sca', 'pre-push' ]
stages: [pre-push]
- id: cycode-sast-pre-push
name: Cycode SAST pre-push defender
language: python
language_version: python3
entry: cycode
args: [ '-o', 'text', '--no-progress-meter', 'scan', '-t', 'sast', 'pre-push' ]
stages: [pre-push]