forked from ansible/pytest-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
51 lines (49 loc) · 815 Bytes
/
.flake8
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
46
47
48
49
50
51
[flake8]
# Don't even try to analyze these:
extend-exclude =
# No need to traverse egg info dir
*.egg-info,
# GitHub configs
.github,
# Cache files of MyPy
.mypy_cache,
# Cache files of pytest
.pytest_cache,
# Occasional virtualenv dir
.venv
# VS Code
.vscode,
# Temporary build dir
build,
# This contains sdists and wheels of ansible-lint that we don't want to check
dist,
# Occasional virtualenv dir
env,
# Metadata of `pip wheel` cmd is autogenerated
pip-wheel-metadata,
extend-ignore =
E203,
E501,
# duplicate of pylint W0611 (unused-import)
F401,
# Temporary disabled until we fix all of them:
D100,
D101,
D102,
D103,
D107,
D200,
D202,
D205,
D211,
D300,
D400,
D401,
E303,
E722,
F901,
PT003,
PT004,
PT006,
PT023,
T201,