forked from airbnb/streamalert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (29 loc) · 916 Bytes
/
setup.cfg
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
[metadata]
name = StreamAlert
summary = A Serverless, Realtime Data Analysis Framework
description-file = README.md
author = Jack Naglieri
author-email = [email protected]
license = Apache License, Version 2.0
[nosetests]
verbosity=2
nocapture=1
[pycodestyle]
max-line-length=90
[bandit]
# Skip the venv/ and tests/ directories when scanning.
exclude: venv,tests
# Skip the following tests:
#
# - [B108:hardcoded_tmp_directory] Probable insecure usage of temp file/directory.
# Severity: Medium Confidence: Medium
# In Lambda, /tmp is explicitly where local files must be stored
# - [B404:blacklist] Consider possible security implications associated with subprocess module.
# Severity: Low Confidence: High
# There are other warnings specific to subprocess calls (e.g. B603, B607)
skips: B108,B404
[yapf]
COLUMN_LIMIT=100
[coverage:report]
omit=stream_alert_cli/*
show_missing=True