-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (44 loc) · 1.12 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
[tool.black]
line-length = 90
target-version = ['py37']
include_trailing_comma = false
[tool.pylint.format]
max-line-length = 90
[tool.pylint.MASTER]
py-version = '3.11'
extension-pkg-whitelist = 'pydantic'
ignore = '.git'
suggestion-mode = 'yes'
[tool.pylint."MESSAGES CONTROL"]
disable = '''
C0103,
E0401,
E0402,
F0001,
R0401,
R0801,
R0901,
R0902,
R0903,
R0904,
W0511,
W0622,
W1401,
'''
[tool.pylint.SPELLING]
# Limits count of emitted suggestions for spelling mistakes.
max-spelling-suggestions = 4
# Spelling dictionary name. Available dictionaries: none. To make it work,
# install the python-enchant package.
spelling-dict = ''
# List of comma separated words that should not be checked.
spelling-ignore-words = ''
# A path to a file that contains the private dictionary; one word per line.
spelling-private-dict-file = ''
# Tells whether to store unknown words to the private dictionary (see the
# --spelling-private-dict-file option) instead of raising a message.
spelling-store-unknown-words = 'no'
[tool.pylint.FORMAT]
max-line-length = 90
[tool.pylint.DESIGN]
max-args = 11