forked from AAA3A-AAA3A/AAA3A-cogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (56 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
57 lines (56 loc) · 1.23 KB
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
57
[tool.black]
line-length = 99
target-version = ['py38']
include = '\.py$'
exclude = '''
/(
\.eggs
| \.git
| \.vscode
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| AAA3A_utils
)/
'''
[tool.isort]
profile = 'black'
line_length = 99
atomic = true
src_paths = ["isort", "test"]
multi_line_output = 7
order_by_type = true
sections = ['FUTURE','STDLIB','FIRSTPARTY','THIRDPARTY','LOCALFOLDER']
known_third_party = ['discord', 'redbot']
known_first_party = [
'antinuke',
'autotraceback',
'calculator',
'clearchannel',
'ctxvar',
'discordedit',
'discordmodals',
'discordsearch',
'dropdownstexts',
'editfile',
'exportchannel',
'getloc',
'ip',
'medicat',
'memberprefix',
'reacttocommand',
'rolesbuttons',
'seen',
'simplesanction',
'sudo',
'tickettool',
'transferchannel',
'urlbuttons'
]
skip = ['.gitignore']
skip_glob = ['.github/*', '.git/*', '.vscode/*', 'docs/*', 'AAA3A_utils/*']