forked from Kreusada/Kreusada-Cogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (41 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
42 lines (41 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.black]
line-length = 99
target-version = ['py38']
include = '\.py$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| adventure\/data
)/
'''
[tool.isort]
profile = 'black'
line_length = 99
atomic = true
sections = ['FUTURE','STDLIB','FIRSTPARTY','THIRDPARTY','LOCALFOLDER']
known_third_party = ['discord', 'redbot']
known_first_party = [
'blackformatter',
'cogpaths',
'consoleclearer',
'flags',
'minifier',
'onthisday',
'pypi',
'qr',
'quotes',
'roleboards',
'termino',
'texteditor',
'timestamps',
'wordbase',
]