Skip to content

Commit 9c1fae1

Browse files
committed
add .flake8 and .isort.cfg
1 parent 3a59dd5 commit 9c1fae1

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.flake8

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[flake8]
2+
exclude =
3+
.git,
4+
__pycache__,
5+
build,
6+
dist,
7+
versioneer.py,
8+
labpdfproc/_version.py,
9+
doc/manual/source/conf.py
10+
max-line-length = 115
11+
# Ignore some style 'errors' produced while formatting by 'black'
12+
ignore = E203, W503

.isort.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[settings]
2+
line_length = 115
3+
multi_line_output = 3
4+
include_trailing_comma = True

0 commit comments

Comments
 (0)