Skip to content

Commit

Permalink
Keep track of some ideas for later
Browse files Browse the repository at this point in the history
  • Loading branch information
gotwarlost committed Feb 11, 2013
1 parent e82ee68 commit ff72017
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
34 changes: 34 additions & 0 deletions misc/config/istanbul-config-alt.json
@@ -0,0 +1,34 @@
{
"//": "None of this is implemented; just ideas at this point - responsibility-specific config",

"verbose": false,
"instrumentation": {
"root": ".",
"default-excludes": true,
"x": [ "**/vendor/**" ],
"embed-source": false,
"variable": "__coverage__",
"compact": true
},
"reporting": {
"print": "summary",
"report": [ "lcov", "cobertura" ],
"dir": "./coverage",
"watermarks": {
"default": [ 50, 80 ],
"branches": [ 25, 60 ]
}
},
"hooks": {
"hook-run-in-context": false,
"post-require-hook": null
},
"baseline": {
"save-baseline": false,
"baseline-file": "./coverage/coverage-baseline.json"
},
"thresholds": {
"statements": -10,
"branches": 80
}
}
42 changes: 42 additions & 0 deletions misc/config/istanbul-config.json
@@ -0,0 +1,42 @@
{
"//": "None of this is implemented; just ideas at this point - command specific config",
"cover": {
"root": ".",

"default-excludes": true,
"x": [ "**/vendor/**" ],

"report": [ "lcov", "cobertura" ],
"dir": "./coverage",

"hook-run-in-context": false,
"post-require-hook": null,

"print": "summary",
"verbose": false
},

"instrument": {
"root": ".",
"output": "../instrumented",

"default-excludes": true,
"x": [ "**/vendor/**" ],

"embed-source": false,
"variable": "__coverage__",
"compact": true,
"save-baseline": false,
"baseline-file": "./coverage/coverage-baseline.json"
},

"check-coverage": {
"statements": -10,
"branches": 80
},

"watermarks": {
"default": [ 50, 80 ],
"branches": [ 25, 60 ]
}
}

0 comments on commit ff72017

Please sign in to comment.