Skip to content

Commit

Permalink
Merge pull request #15 from Elao/sum
Browse files Browse the repository at this point in the history
Sum
  • Loading branch information
Tom32i authored Jan 4, 2018
2 parents eaf24ab + bb1d601 commit f0cdc54
Show file tree
Hide file tree
Showing 13 changed files with 1,289 additions and 48 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4,
{ "SwitchCase": 1 }
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": [
"error",
{ "allow": ["info", "error"] }
]
}
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ In your projet repository, just enter `gad [command] (options)`.
| __review__ | Display PullRequest that are awaiting your review | |
| __changelog__ | Generate a markdown changelog of the current sprint | __all__ `--all` include open issues in the changelog. __sprint__ `-s=-2` Show the changelog from two sprints ago |
| __estimate__ | Show stories that are missing estimation | |
| __sum__ | Calculate the sum of the stories matching the given filters | __label__ `--label=API` include issues with label "API" |
| __status__ | Show the status of the repository | |
| __help__ | Show list of commands | |
| __exit__ | Quit the dashboard | |
Expand Down Expand Up @@ -77,3 +78,6 @@ By default, it's located in `~/.gad/cache` but you can specify a different path

node gad.js -o [organisation|owner] -r [repo] -u [username] -p [password|token]

## Coding style

npm run lint
Loading

0 comments on commit f0cdc54

Please sign in to comment.