-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.codacy.yml
More file actions
28 lines (22 loc) · 1 KB
/
Copy path.codacy.yml
File metadata and controls
28 lines (22 loc) · 1 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
---
# Codacy analysis configuration
# https://docs.codacy.com/repositories-configure/codacy-configuration-file/
exclude_paths:
# Generated files — cannot be changed by hand
- "Gemfile.lock"
- "db/schema.rb"
# Data migrations — long up/down methods are unavoidable
- "db/migrate/**"
# Load-test scripts — k6 JS syntax (group() callbacks) is valid k6 idiom,
# not a lone-block code smell
- "load_tests/**"
# Architecture diagram generator — standalone maintenance script, not production
- "scripts/update_architecture_diagram.rb"
# Pentest scripts — ShellCheck SC2016 (single-quote expansion) is intentional;
# payloads like '$MONGO_GT' and '`id`' must NOT expand. SC2034 (BASE_URL) is used
# further down in the same script.
- ".pentest/**"
# Monitoring infrastructure templates — SMTP environment variable references
# in docker-compose look like credentials to static scanners. alertmanager.yml
# is gitignored (only .example is tracked).
- "docker-compose.monitoring.yml"