forked from Knuttatutta/talk-to-your-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (35 loc) · 830 Bytes
/
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
[tool.black]
line-length = 120
[tool.isort]
profile = 'black'
line_length = 120
force_single_line = true
skip_glob = [".env"]
[tool.pylint.'MASTER']
max-line-length=120
[tool.pylint.messages_control]
disable =[
'broad-except',
'duplicate-code',
'fixme',
'import-error',
'invalid-name',
'line-too-long',
'protected-access',
"missing-module-docstring",
'missing-function-docstring',
'raise-missing-from',
'redefined-builtin',
'redefined-outer-name',
'subprocess-run-check',
'too-few-public-methods',
'too-many-locals',
'too-many-arguments',
'too-many-instance-attributes',
'too-many-statements',
'trailing-whitespace',
'ungrouped-imports',
'unspecified-encoding',
'unused-argument',
'wrong-import-order',
]