Skip to content

Commit 0773016

Browse files
committedAug 16, 2021
Release Infection Monkey v1.11.0
2 parents 2d7919c + cbd803a commit 0773016

File tree

920 files changed

+32756
-15585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

920 files changed

+32756
-15585
lines changed
 

‎ci_scripts/flake8_linter_check.ini ‎.flake8

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
[flake8]
22
## Warn about linter issues.
33

4-
exclude = ../monkey/monkey_island/cc/ui,
5-
../monkey/common/cloud
4+
exclude = monkey/monkey_island/cc/ui,vulture_allowlist.py
65
show-source = True
76
max-complexity = 10
8-
max-line-length = 127
7+
max-line-length = 100
8+
9+
### ignore "whitespace before ':'", "line break before binary operator" for
10+
### compatibility with black, and cyclomatic complexity (for now).
11+
extend-ignore = E203, W503, C901
912

1013
### --statistics Count the number of occurrences of each error/warning code and print a report.
1114
statistics = True
1215

1316
### --count will print the total number of errors.
1417
count = True
15-

‎.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
monkey/tests/data_for_tests/ransomware_targets/** -text
2+
monkey/tests/data_for_tests/test_readme.txt -text
3+
monkey/tests/data_for_tests/stable_file.txt -text
4+
monkey/infection_monkey/ransomware/ransomware_readme.txt -text

0 commit comments

Comments
 (0)