Skip to content

Commit cd86540

Browse files
author
Uğur Özyılmazel
committedOct 11, 2019
Add linter, checker configurations
1 parent 90c11a8 commit cd86540

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
 

‎.flake8

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[flake8]
2+
max-line-length = 119
3+
ignore = W503
4+
exclude =
5+
.git,
6+
__pycache__,
7+
docs/source/conf.py,
8+
old,
9+
build,
10+
dist,
11+
migrations

‎.isort.cfg

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[settings]
2+
line_length = 60
3+
multi_line_output = 3
4+
use_parentheses = true
5+
include_trailing_comma = true
6+
quiet = true
7+
force_grid_wrap = 0
8+
known_django = django
9+
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

‎pyproject.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.black]
2+
line-length = 119
3+
py36 = true
4+
skip-string-normalization = true
5+
quiet = true
6+
exclude='''
7+
/(
8+
\.git
9+
| \.hg
10+
| \.tox
11+
| \.venv
12+
| _build
13+
| buck-out
14+
| build
15+
| dist
16+
)/
17+
'''

0 commit comments

Comments
 (0)
Please sign in to comment.