File tree Expand file tree Collapse file tree 2 files changed +30
-37
lines changed Expand file tree Collapse file tree 2 files changed +30
-37
lines changed Original file line number Diff line number Diff line change 1- [flake8]
2- ignore = BLK100
3-
4- # flake8-quotes:
5- # Use double quotes as our default to comply with black, we like it and
6- # don't want to use single quotes anymore.
7- # We would love to configure this via our pyproject.toml but flake8-3.8 does
8- # not support it yet.
9- inline-quotes = double
10- multiline-quotes = double
11- docstring-quotes = double
12- avoid-escape = True
13-
14- # flake8-docstrings
15- # Use the Google Python Styleguide Docstring format.
16- docstring-convention =google
17-
18- exclude =
19- # No need to traverse our git directory
20- .git,
21- # There's no value in checking cache directories
22- __pycache__,
23- # The conf file is mostly autogenerated, ignore it
24- docs/source/conf.py,
25- # The old directory contains Flake8 2.0
26- old,
27- # This contains our built documentation
28- build,
29- # This contains builds of flake8 that we don't want to check
30- dist,
31- venv,
32- docs
33- examples
34- test
35-
36- max-line-length = 120
1+ [flake8]
2+ ignore = BLK100
3+
4+ # flake8-quotes:
5+ # Use double quotes as our default to comply with black, we like it and
6+ # don't want to use single quotes anymore.
7+ # We would love to configure this via our pyproject.toml but flake8-3.8 does
8+ # not support it yet.
9+ inline-quotes = double
10+ multiline-quotes = double
11+ docstring-quotes = double
12+ avoid-escape = True
13+
14+ # flake8-docstrings
15+ # Use the Google Python Styleguide Docstring format.
16+ docstring-convention = google
17+
18+ exclude =
19+ .git,
20+ __pycache__,
21+ docs/source/conf.py,
22+ old,
23+ build,
24+ dist,
25+ venv,
26+ docs,
27+ examples,
28+ test
29+
30+ max-line-length = 120
Original file line number Diff line number Diff line change 33
44# Import local modules
55from photoshop .api ._core import Photoshop
6- from photoshop .api .enumerations import LayerKind
76from photoshop .api .enumerations import RasterizeType
87from photoshop .api .text_item import TextItem
98
You can’t perform that action at this time.
0 commit comments