-
-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy path.flake8
More file actions
29 lines (28 loc) · 911 Bytes
/
.flake8
File metadata and controls
29 lines (28 loc) · 911 Bytes
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
# Generated from:
# https://github.com/plone/meta/tree/main/src/plone/meta/default
# See the inline comments on how to expand/tweak this configuration file
[flake8]
doctests = 1
ignore =
# black takes care of line length
E501,
# black takes care of where to break lines
W503,
# black takes care of spaces within slicing (list[:])
E203,
# black takes care of spaces after commas
E231,
per-file-ignores =
src/Products/CMFPlone/patches/__init__.py: F401,E402
src/Products/CMFPlone/skins/plone_scripts/*.py: E265,E266,F401,F821,F706
src/Products/CMFPlone/earlypatches/security.py: E402
src/Products/CMFPlone/UnicodeSplitter/__init__.py: F401,F403
src/Products/CMFPlone/utils.py: F821
src/Products/CMFPlone/patches/speed.py: E402
##
# Add extra configuration options in .meta.toml:
# [flake8]
# extra_lines = """
# _your own configuration lines_
# """
##