UNPKG

845 BJavaScriptView Raw
1// ports
2module.exports.ports = {
3 dev: 2017,
4};
5
6// for linting
7module.exports.lintingDirs = [
8 'bin',
9 'gulp',
10 'lib',
11 'spec',
12 'src',
13];
14
15// for jsdoc
16module.exports.jsdocDirs = [
17 'gulp',
18 'src',
19];
20
21// for htmlhint
22module.exports.htmlhintDirs = [
23 'demo',
24 'spec',
25];
26
27// for template2module
28module.exports.templateDirs = [
29 'lib',
30 'src',
31];
32
33// for jsdoc
34module.exports.jsdocConfig = {
35 tags: {
36 allowUnknownTags: true
37 },
38 source: {
39 includePattern: '.+\\.js$',
40 excludePattern: '(^|\\/|\\\\)_'
41 },
42 opts: {
43 destination: './doc/jsdoc' // this field is TO BE OVERRIDDEN
44 },
45 plugins: [
46 'plugins/markdown'
47 ],
48 templates: {
49 cleverLinks: true,
50 monospaceLinks: true,
51 path: 'ink-docstrap',
52 theme: 'cerulean',
53 navType: 'vertical',
54 linenums: true,
55 dateFormat: 'YYYY-MM'
56 }
57};