forked from collective/collective.cover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
56 lines (47 loc) · 1.14 KB
/
buildout.cfg
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
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-4.3.x.cfg
https://raw.github.com/collective/buildout.plonetest/master/qa.cfg
versions.cfg
package-name = collective.cover
package-extras = [test]
eggs +=
iw.debug
plone.reload
parts +=
checkversions
dependencychecker
i18ndude
node
omelette
rebuild_i18n-sh
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[code-analysis]
directory = ${buildout:directory}/src/collective/cover
pre-commit-hook = True
flake8-ignore = E501
flake8-max-complexity = 12
csslint = True
csslint-bin = bin/csslint
jshint = True
jshint-bin = bin/jshint
debug-statements = True
prefer-single-quotes = True
[dependencychecker]
recipe = zc.recipe.egg
eggs = z3c.dependencychecker
[instance]
zcml += iw.debug
[i18ndude]
recipe = zc.recipe.egg
eggs = i18ndude
[omelette]
recipe = collective.recipe.omelette
eggs = ${test:eggs}
[rebuild_i18n-sh]
recipe = collective.recipe.template
url = https://raw.github.com/collective/buildout.plonetest/master/templates/rebuild_i18n.sh.in
output = ${buildout:directory}/bin/rebuild_i18n.sh
mode = 755