forked from Snooz82/robotframework-browser-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (52 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
[tool.pylint]
max-line-length = 100
disable = "missing-function-docstring,too-many-lines,missing-module-docstring,missing-class-docstring,invalid-name,too-many-arguments,too-many-instance-attributes,redefined-builtin,redefined-outer-name,too-many-public-methods,broad-exception-caught,keyword-arg-before-vararg"
[tool.black]
target-version = ['py38']
line-length = 100
[tool.ruff]
unfixable = []
exclude = [
"__pycache__",
"dist",
".venv"
]
ignore = [
"B008", # do not perform function calls in argument defaults
"B904", # TODO only temporary. should be fixed.
"E501", # line too long
"N815", # mixedCase variable in class scope
"N803", # argument name should be lowercase
"N806", # variable in function should be lowercase
"N812", # lowercase imported as non lowercase
"N999", # Invalid module name: 'Browser'
"PLR0913", # too many arguments
]
target-version = "py38"
select = [
"E",
"F",
"W",
"C90",
"I",
"N",
"B",
"PYI",
"PL",
"PTH",
"UP",
"A",
"C4",
"DTZ",
"ISC",
"ICN",
"INP",
"PIE",
"T20",
"PYI",
"PT",
"RSE",
"RET",
"SIM",
"RUF"
]