Skip to content

Commit 4c04654

Browse files
committed
add style files
1 parent 7eaebec commit 4c04654

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

.flake8

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[flake8]
2+
max-line-length = 79
3+
ignore = W503

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Custom
2+
.dccache
3+
14
# Byte-compiled / optimized / DLL files
25
__pycache__/
36
*.py[cod]

.style.yapf

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[style]
2+
based_on_style=pep8
3+
column_limit=79
4+
split_before_arithmetic_operator=true
5+
split_before_logical_operator=true
6+
split_before_named_assigns=true
7+
split_before_first_argument=true
8+
dedent_closing_brackets=true
9+
allow_split_before_dict_value=false
10+
split_all_comma_separated_values=true

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@
2626
"Topic :: Software Development :: Libraries :: Python Modules",
2727
],
2828
python_requires=">=3.6",
29-
install_requires=['']) # Dependencies
29+
install_requires=['']
30+
) # Dependencies

0 commit comments

Comments
 (0)