File tree 2 files changed +13
-9
lines changed
2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 7
7
instance
8
8
test
9
9
# we use tox for testing and linting, by default
10
- # code-analysis
10
+ code-analysis
11
11
coverage
12
12
test-coverage
13
13
createcoverage
@@ -37,10 +37,10 @@ recipe = collective.recipe.vscode
37
37
eggs = ${instance:eggs}
38
38
autocomplete-use-omelette = True
39
39
40
- # [code-analysis]
41
- # recipe = plone.recipe.codeanalysis
42
- # directory = ${buildout:directory}/src/iosanita
43
- # return-status-codes = False
40
+ [code-analysis]
41
+ recipe = plone.recipe.codeanalysis
42
+ directory = ${buildout:directory}/src/redturtle
43
+ return-status-codes = False
44
44
45
45
46
46
[omelette]
Original file line number Diff line number Diff line change @@ -6,8 +6,13 @@ ignore =
6
6
.gitattributes
7
7
8
8
[isort]
9
- # black compatible isort rules:
10
- profile = plone
9
+ # for details see
10
+ # http://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting
11
+ force_alphabetical_sort = True
12
+ force_single_line = True
13
+ lines_after_imports = 2
14
+ line_length = 200
15
+ not_skip = __init__.py
11
16
12
17
[flake8]
13
18
# black compatible flake8 rules:
@@ -17,11 +22,10 @@ ignore =
17
22
E501
18
23
T001
19
24
C813
20
- C101
21
25
# E203, E266
22
26
exclude = bootstrap.py,docs,*.egg.,omelette
23
27
max-line-length = 88
24
28
max-complexity = 18
25
29
select = B,C,E,F,W,T4,B9
26
-
27
30
builtins = unicode,basestring
31
+
You can’t perform that action at this time.
0 commit comments