-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codacy.yml
More file actions
33 lines (32 loc) · 757 Bytes
/
Copy path.codacy.yml
File metadata and controls
33 lines (32 loc) · 757 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
---
engines:
# Disable ESLint — no .eslintrc in web/ frontend directory
eslint:
enabled: false
# Disable PMD — no Java code, no ruleset configured
pmd:
enabled: false
# Disable Prospector — redundant with pylint
prospector:
enabled: false
# Keep bandit for security scanning
bandit:
enabled: true
# Keep pylint but limit scope via exclude_paths below
pylint:
enabled: true
# Global path exclusions — keeps pylint result count manageable
# to avoid Codacy SARIF formatter IndexOutOfBoundsException (Sarif.scala:185)
exclude_paths:
- "web/**"
- "git_ignore_folder/**"
- "workspace/**"
- "scripts/**"
- "test/**"
- "*.md"
- "*.txt"
- "*.yaml"
- "*.yml"
- "*.json"
- "*.toml"
- ".git/**"