-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
56 lines (55 loc) · 1.1 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.black]
line-length = 99
target-version = ['py38']
include = '\.py$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = 'black'
line_length = 99
atomic = true
sections = ['FUTURE','STDLIB','FIRSTPARTY','THIRDPARTY','LOCALFOLDER']
known_third_party = ['discord', 'redbot']
known_first_party = [
'blackformatter',
'cocktail',
'cogpaths',
'colour',
'consoleclearer',
'counting',
'embedcreator',
'flags',
'gallery',
'lock',
'mentionable',
'messagedeleter',
'minifier',
'morsecode',
'namegenerator',
'onthisday',
'pick',
'pypi',
'qr',
'quotes',
'rhymes',
'riddles',
'roleboards',
'termino',
'texteditor',
'textfont',
'tonguetwisters',
'timestamps',
'unicodelookup',
]