forked from ATIX-AG/pulp-2to3-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake8.cfg
17 lines (15 loc) · 803 Bytes
/
flake8.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]
exclude = ./docs/*,*/migrations/*, ./pulp_2to3_migration/app/json_schema.py
ignore = W503,Q000,Q003,D100,D104,D105,D106,D200,D202,D204,D205,D400,D401,D402
max-line-length = 100
# Flake8-quotes extension codes
# -----------------------------
# Q000: double or single quotes only, default is double (don't want to enforce this)
# Flake8-docstring extension codes
# --------------------------------
# D100: missing docstring in public module
# D104: missing docstring in public package
# D106: missing docstring in public nested class (complains about "class Meta:" and documenting those is silly)
# D200: one-line docstring should fit on one line with quotes
# D401: first line should be imperative (nitpicky)
# D402: first line should not be the function’s “signature” (false positives)