Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit 3fd5c26

Browse files
Merge pull request #72 from himynameisdave/v0.9.0
v0.9.0 - Important bug fixes
2 parents b4240e5 + 279ccea commit 3fd5c26

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3800
-583
lines changed

.eslintrc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"extends": "airbnb-base",
3+
"env": {
4+
"browser": false,
5+
"node": true,
6+
"es6": true,
7+
"jest": true
8+
},
9+
"rules": {
10+
"arrow-parens": [0],
11+
"indent": [2, 4, { "SwitchCase": 1, "VariableDeclarator": 1 }],
12+
"max-len": [0],
13+
"no-console": [0],
14+
"no-multi-spaces": [0],
15+
"no-plusplus": [0],
16+
"no-underscore-dangle": [0],
17+
"global-require": [0],
18+
"comma-dangle": [2, {
19+
"arrays": "ignore",
20+
"objects": "always",
21+
"imports": "always",
22+
"exports": "always",
23+
"functions": "ignore"
24+
}],
25+
"key-spacing": [0],
26+
"radix": [0],
27+
"strict": [0, "never"],
28+
"import/extensions": [0]
29+
}
30+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/node_modules/
22
*.bcup
3+
*.DS_Store
4+
/coverage/

.jshintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
node_js:
3+
- "4"
4+
- "5"
5+
- "6"
6+
- "7"
7+
cache: yarn

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Feel free to contribute to the project by opening a [Pull Request](https://githu
6262
6363
---
6464

65-
*Created by [Dave Lunny](https://twitter.com/dave_lunny) in the wonderful year of 2016.*
65+
*Created by [Dave Lunny](https://twitter.com/dave_lunny) in the glorious year of 2017.*
6666
*Licensed under MIT :hand:*

bin/constants.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
const constants = {
2+
menuChoices: [
3+
'Add Custom Labels',
4+
'Add Labels From Package',
5+
'Create a Package From Labels',
6+
'Remove Labels',
7+
'Remove All Labels',
8+
'Reset Token',
9+
'Quit'
10+
],
11+
banners: [
12+
'Welcome to git-labelmaker',
13+
'Adding Custom Labels',
14+
'Adding Labels From Package',
15+
'Creating Package From Labels',
16+
'Removing Labels',
17+
'Resetting Token',
18+
'See Ya!',
19+
'Wrong Password!',
20+
'Removing All Labels'
21+
],
22+
};
23+
24+
module.exports = constants;

0 commit comments

Comments
 (0)