forked from andreoliwa/nitpick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codacy.yaml
45 lines (44 loc) · 937 Bytes
/
.codacy.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
---
engines:
bandit: # Python security analyzer
enabled: true
hadolint: # Docker linter
enabled: true
prospector: # Python static analysis tool
enabled: true
pylintpython3: # Python linter
enabled: true
jacksonlinter: # JSON linter
enabled: true
markdownlint: # Markdown linter
enabled: true
semgrep: # Generic static analysis tool
enabled: true
shellcheck: # Shell script linter
enabled: true
spectral: # JSON/YAML linter
enabled: true
duplication: # Duplicated code detection
minTokenMatch: 50
skipLexicalErrors: true
ignoreLiterals: true
ignoreIdentifiers: true
ignoreAnnotations: true
ignoreUsings: true
exclude_paths:
- test_*.py
- tests/**
exclude_paths:
- "*.egg"
- "*.egg-info/**"
- .eggs/**
- .git/**
- .tox/**
- .venv/**
- __pycache__/**
- bin/**
- build/**
- dist/**
# Test files
- test_*.py
- tests/**