File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed
Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [Makefile ]
4+ indent_style = tab
5+
6+ [* .{html,py,js,yml} ]
7+ charset = utf-8
8+
9+ [* .js ]
10+ indent_style = space
11+ indent_size = 2
12+
13+ [* .yml ]
14+ indent_style = space
15+ indent_size = 2
16+
17+ [* .html ]
18+ indent_style = space
19+ indent_size = 4
20+
21+ [* .py ]
22+ indent_style = space
23+ indent_size = 4
24+ line_length = 79
25+ multi_line_output = 3
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " toggl_python"
33version = " 0.2.6"
4- description = " Python wraper for Toggl API."
4+ description = " Python wrapper for Toggl API."
55authors = [
" Ivlev Denis <[email protected] >" ]
66readme = " README.md"
77homepage = " https://github.com/evrone/toggl_python"
@@ -27,6 +27,28 @@ respx = "^0.16"
2727black = " ^20.8b1"
2828ipython = " ^7.19.0"
2929
30+ [tool .black ]
31+ line-length = 79
32+ target-version = [' py38' ]
33+ include = ' \.pyi?$'
34+ exclude = '''
35+ (
36+ /(
37+ \.eggs # exclude a few common directories in the
38+ | \.git # root of the project
39+ | \.hg
40+ | \.mypy_cache
41+ | \.tox
42+ | \.venv
43+ | _build
44+ | buck-out
45+ | build
46+ | dist
47+ )/
48+ | foo.py # also separately exclude a file named foo.py in
49+ # the root of the project
50+ )
51+ '''
3052
3153[build-system ]
3254requires = [" poetry>=0.12" ]
You can’t perform that action at this time.
0 commit comments