-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (59 loc) · 2.06 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
57
58
59
60
[tool.robocop]
configure = [
"line-too-long:line_length:160",
"empty-line-after-section:empty_lines:1",
"missing-doc-keyword:enabled:False",
"missing-doc-test-case:ignore_templated:True",
"inconsistent-assignment:assignment_sign_type:space_and_equal_sign",
"sleep-keyword-used:enabled:True",
"sleep-keyword-used:severity:I", # TODO: Change to (W)arning
"too-long-test-case:enabled:False", # TODO: Enable again
"too-many-calls-in-test-case:enabled:False" # TODO: Enable again
]
[tool.robotidy]
diff = false
overwrite = true
verbose = false
separator = "space"
spacecount = 2
line_length = 120
lineseparator = "native"
skip_gitignore = true
ignore_git_dir = true
configure = [
"AddMissingEnd:enabled=True",
"NormalizeSeparators:enabled=True",
"DiscardEmptySections:enabled=True",
"MergeAndOrderSections:enabled=True",
"RemoveEmptySettings:enabled=True",
"ReplaceEmptyValues:enabled=True",
"NormalizeAssignments:enabled=True",
"NormalizeAssignments:equal_sign_type=space_and_equal_sign",
"GenerateDocumentation:enabled=False",
"OrderSettings:enabled=True",
"OrderSettingsSection:enabled=True",
"NormalizeTags:enabled=True",
"OrderTags:enabled=False",
"RenameVariables:enabled=True",
"IndentNestedKeywords:enabled=False",
"AlignSettingsSection:enabled=True",
"AlignVariablesSection:enabled=True",
"AlignTemplatedTestCases:enabled=True",
"AlignTestCasesSection:enabled=False",
"AlignKeywordsSection:enabled=False",
"AlignKeywordsSection:widths=10",
"NormalizeNewLines:enabled=True",
"NormalizeNewLines:consecutive_lines=0",
"NormalizeSectionHeaderName:enabled=True",
"NormalizeSettingName:enabled=True",
"ReplaceRunKeywordIf:enabled=True",
"SplitTooLongLine:enabled=True",
"SmartSortKeywords:enabled=False",
"RenameTestCases:enabled=True",
"RenameKeywords:enabled=True",
"ReplaceReturns:enabled=True",
"ReplaceBreakContinue:enabled=True",
"InlineIf:enabled=True",
"Translate:enabled=False",
"NormalizeComments:enabled=True",
]