Skip to content

Commit 8cd2339

Browse files
authored
Merge pull request #50 from bsolomon1124/flake8-config
Specify default flake8 configuration
2 parents f8884e2 + e6eab7e commit 8cd2339

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.flake8

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[flake8]
2+
doctests = False
3+
exclude =
4+
.git,
5+
.github/,
6+
docs/,
7+
doc/,
8+
*.pyc,
9+
__pycache__,
10+
requirements/,
11+
requirements.txt,
12+
13+
max-line-length = 127
14+
hang-closing = False
15+
max-complexity = 10
16+
17+
# Default flake8 formatting is '%(path)s:%(row)d:%(col)d: %(code)s %(text)s'
18+
format = '%(path)s: row %(row)d: %(code)s %(text)s'
19+
20+

0 commit comments

Comments
 (0)